babylonjs-node-editor 7.54.0 → 7.54.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.
package/babylon.nodeEditor.d.ts
CHANGED
|
@@ -2626,6 +2626,33 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
2626
2626
|
|
|
2627
2627
|
|
|
2628
2628
|
|
|
2629
|
+
}
|
|
2630
|
+
declare module BABYLON.NodeEditor {
|
|
2631
|
+
|
|
2632
|
+
|
|
2633
|
+
}
|
|
2634
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2635
|
+
interface ITextureButtonLineProps {
|
|
2636
|
+
label: string;
|
|
2637
|
+
scene: BABYLON.Scene;
|
|
2638
|
+
onClick: (file: File) => void;
|
|
2639
|
+
onLink: (texture: BABYLON.BaseTexture) => void;
|
|
2640
|
+
accept: string;
|
|
2641
|
+
}
|
|
2642
|
+
interface ITextureButtonLineState {
|
|
2643
|
+
isOpen: boolean;
|
|
2644
|
+
}
|
|
2645
|
+
export class TextureButtonLine extends React.Component<ITextureButtonLineProps, ITextureButtonLineState> {
|
|
2646
|
+
private static _IDGenerator;
|
|
2647
|
+
private _id;
|
|
2648
|
+
private _uploadInputRef;
|
|
2649
|
+
constructor(props: ITextureButtonLineProps);
|
|
2650
|
+
onChange(evt: any): void;
|
|
2651
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
2652
|
+
}
|
|
2653
|
+
|
|
2654
|
+
|
|
2655
|
+
|
|
2629
2656
|
}
|
|
2630
2657
|
declare module BABYLON.NodeEditor {
|
|
2631
2658
|
|