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.
|
@@ -737,6 +737,7 @@ export class MeshPropertyTabComponent extends React.Component<IPropertyComponent
|
|
|
737
737
|
}> {
|
|
738
738
|
constructor(props: IPropertyComponentProps);
|
|
739
739
|
loadMesh(file: File): Promise<void>;
|
|
740
|
+
removeData(): void;
|
|
740
741
|
render(): JSX.Element;
|
|
741
742
|
}
|
|
742
743
|
|
|
@@ -786,6 +787,7 @@ import { IPropertyComponentProps } from "babylonjs-node-geometry-editor/nodeGrap
|
|
|
786
787
|
export class TexturePropertyTabComponent extends React.Component<IPropertyComponentProps> {
|
|
787
788
|
constructor(props: IPropertyComponentProps);
|
|
788
789
|
loadTextureData(file: File): Promise<void>;
|
|
790
|
+
removeData(): void;
|
|
789
791
|
render(): JSX.Element;
|
|
790
792
|
}
|
|
791
793
|
|
|
@@ -888,7 +890,7 @@ import { GraphFrame } from "babylonjs-node-geometry-editor/nodeGraphSystem/graph
|
|
|
888
890
|
import { NodeGeometry } from "babylonjs/Meshes/Node/nodeGeometry";
|
|
889
891
|
export class SerializationTools {
|
|
890
892
|
static UpdateLocations(geometry: NodeGeometry, globalState: GlobalState, frame?: Nullable<GraphFrame>): void;
|
|
891
|
-
static Serialize(geometry: NodeGeometry,
|
|
893
|
+
static Serialize(geometry: NodeGeometry, globalState: GlobalState, frame?: Nullable<GraphFrame>): string;
|
|
892
894
|
static Deserialize(serializationObject: any, globalState: GlobalState): void;
|
|
893
895
|
static AddFrameToGeometry(serializationObject: any, globalState: GlobalState, currentGeometry: NodeGeometry): void;
|
|
894
896
|
}
|
|
@@ -4614,6 +4616,7 @@ declare module BABYLON.NodeGeometryEditor {
|
|
|
4614
4616
|
}> {
|
|
4615
4617
|
constructor(props: BABYLON.NodeGeometryEditor.SharedUIComponents.IPropertyComponentProps);
|
|
4616
4618
|
loadMesh(file: File): Promise<void>;
|
|
4619
|
+
removeData(): void;
|
|
4617
4620
|
render(): JSX.Element;
|
|
4618
4621
|
}
|
|
4619
4622
|
|
|
@@ -4650,6 +4653,7 @@ declare module BABYLON.NodeGeometryEditor {
|
|
|
4650
4653
|
export class TexturePropertyTabComponent extends React.Component<BABYLON.NodeGeometryEditor.SharedUIComponents.IPropertyComponentProps> {
|
|
4651
4654
|
constructor(props: BABYLON.NodeGeometryEditor.SharedUIComponents.IPropertyComponentProps);
|
|
4652
4655
|
loadTextureData(file: File): Promise<void>;
|
|
4656
|
+
removeData(): void;
|
|
4653
4657
|
render(): JSX.Element;
|
|
4654
4658
|
}
|
|
4655
4659
|
|
|
@@ -4718,7 +4722,7 @@ declare module BABYLON.NodeGeometryEditor {
|
|
|
4718
4722
|
|
|
4719
4723
|
export class SerializationTools {
|
|
4720
4724
|
static UpdateLocations(geometry: BABYLON.NodeGeometry, globalState: GlobalState, frame?: BABYLON.Nullable<BABYLON.NodeGeometryEditor.SharedUIComponents.GraphFrame>): void;
|
|
4721
|
-
static Serialize(geometry: BABYLON.NodeGeometry,
|
|
4725
|
+
static Serialize(geometry: BABYLON.NodeGeometry, globalState: GlobalState, frame?: BABYLON.Nullable<BABYLON.NodeGeometryEditor.SharedUIComponents.GraphFrame>): string;
|
|
4722
4726
|
static Deserialize(serializationObject: any, globalState: GlobalState): void;
|
|
4723
4727
|
static AddFrameToGeometry(serializationObject: any, globalState: GlobalState, currentGeometry: BABYLON.NodeGeometry): void;
|
|
4724
4728
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-node-geometry-editor",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.25.1",
|
|
4
4
|
"main": "babylon.nodeGeometryEditor.js",
|
|
5
5
|
"types": "babylon.nodeGeometryEditor.module.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"clean": "rimraf dist && rimraf babylon*.*"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"babylonjs": "^6.
|
|
17
|
+
"babylonjs": "^6.25.1"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@dev/build-tools": "1.0.0",
|