babylonjs-node-geometry-editor 6.24.0 → 6.25.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.
|
@@ -524,6 +524,7 @@ declare module BABYLON.NodeGeometryEditor {
|
|
|
524
524
|
}> {
|
|
525
525
|
constructor(props: BABYLON.NodeGeometryEditor.SharedUIComponents.IPropertyComponentProps);
|
|
526
526
|
loadMesh(file: File): Promise<void>;
|
|
527
|
+
removeData(): void;
|
|
527
528
|
render(): JSX.Element;
|
|
528
529
|
}
|
|
529
530
|
|
|
@@ -560,6 +561,7 @@ declare module BABYLON.NodeGeometryEditor {
|
|
|
560
561
|
export class TexturePropertyTabComponent extends React.Component<BABYLON.NodeGeometryEditor.SharedUIComponents.IPropertyComponentProps> {
|
|
561
562
|
constructor(props: BABYLON.NodeGeometryEditor.SharedUIComponents.IPropertyComponentProps);
|
|
562
563
|
loadTextureData(file: File): Promise<void>;
|
|
564
|
+
removeData(): void;
|
|
563
565
|
render(): JSX.Element;
|
|
564
566
|
}
|
|
565
567
|
|
|
@@ -628,7 +630,7 @@ declare module BABYLON.NodeGeometryEditor {
|
|
|
628
630
|
|
|
629
631
|
export class SerializationTools {
|
|
630
632
|
static UpdateLocations(geometry: BABYLON.NodeGeometry, globalState: GlobalState, frame?: BABYLON.Nullable<BABYLON.NodeGeometryEditor.SharedUIComponents.GraphFrame>): void;
|
|
631
|
-
static Serialize(geometry: BABYLON.NodeGeometry,
|
|
633
|
+
static Serialize(geometry: BABYLON.NodeGeometry, globalState: GlobalState, frame?: BABYLON.Nullable<BABYLON.NodeGeometryEditor.SharedUIComponents.GraphFrame>): string;
|
|
632
634
|
static Deserialize(serializationObject: any, globalState: GlobalState): void;
|
|
633
635
|
static AddFrameToGeometry(serializationObject: any, globalState: GlobalState, currentGeometry: BABYLON.NodeGeometry): void;
|
|
634
636
|
}
|