babylonjs-node-render-graph-editor 7.43.0 → 7.43.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -2365,6 +2365,33 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
|
2365
2365
|
|
|
2366
2366
|
|
|
2367
2367
|
|
|
2368
|
+
}
|
|
2369
|
+
declare module BABYLON.NodeRenderGraphEditor {
|
|
2370
|
+
|
|
2371
|
+
|
|
2372
|
+
}
|
|
2373
|
+
declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
2374
|
+
interface ITextureButtonLineProps {
|
|
2375
|
+
label: string;
|
|
2376
|
+
scene: BABYLON.Scene;
|
|
2377
|
+
onClick: (file: File) => void;
|
|
2378
|
+
onLink: (texture: BABYLON.BaseTexture) => void;
|
|
2379
|
+
accept: string;
|
|
2380
|
+
}
|
|
2381
|
+
interface ITextureButtonLineState {
|
|
2382
|
+
isOpen: boolean;
|
|
2383
|
+
}
|
|
2384
|
+
export class TextureButtonLine extends React.Component<ITextureButtonLineProps, ITextureButtonLineState> {
|
|
2385
|
+
private static _IDGenerator;
|
|
2386
|
+
private _id;
|
|
2387
|
+
private _uploadInputRef;
|
|
2388
|
+
constructor(props: ITextureButtonLineProps);
|
|
2389
|
+
onChange(evt: any): void;
|
|
2390
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
2391
|
+
}
|
|
2392
|
+
|
|
2393
|
+
|
|
2394
|
+
|
|
2368
2395
|
}
|
|
2369
2396
|
declare module BABYLON.NodeRenderGraphEditor {
|
|
2370
2397
|
|