babylonjs-node-editor 5.21.0 → 5.22.0
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.
|
@@ -2946,10 +2946,10 @@ export class StateManager {
|
|
|
2946
2946
|
getEditorDataMap: () => {
|
|
2947
2947
|
[key: number]: number;
|
|
2948
2948
|
};
|
|
2949
|
-
createDefaultInputData: (rootData: any, portData: IPortData, nodeContainer: INodeContainer) => {
|
|
2949
|
+
createDefaultInputData: (rootData: any, portData: IPortData, nodeContainer: INodeContainer) => Nullable<{
|
|
2950
2950
|
data: INodeData;
|
|
2951
2951
|
name: string;
|
|
2952
|
-
}
|
|
2952
|
+
}>;
|
|
2953
2953
|
}
|
|
2954
2954
|
|
|
2955
2955
|
}
|
|
@@ -6060,10 +6060,10 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
6060
6060
|
getEditorDataMap: () => {
|
|
6061
6061
|
[key: number]: number;
|
|
6062
6062
|
};
|
|
6063
|
-
createDefaultInputData: (rootData: any, portData: BABYLON.NodeEditor.SharedUIComponents.IPortData, nodeContainer: BABYLON.NodeEditor.SharedUIComponents.INodeContainer) => {
|
|
6063
|
+
createDefaultInputData: (rootData: any, portData: BABYLON.NodeEditor.SharedUIComponents.IPortData, nodeContainer: BABYLON.NodeEditor.SharedUIComponents.INodeContainer) => BABYLON.Nullable<{
|
|
6064
6064
|
data: BABYLON.NodeEditor.SharedUIComponents.INodeData;
|
|
6065
6065
|
name: string;
|
|
6066
|
-
}
|
|
6066
|
+
}>;
|
|
6067
6067
|
}
|
|
6068
6068
|
|
|
6069
6069
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-node-editor",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.22.0",
|
|
4
4
|
"main": "babylon.nodeEditor.js",
|
|
5
5
|
"types": "babylon.nodeEditor.module.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"clean": "rimraf dist && rimraf babylon*.*"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"babylonjs": "^5.
|
|
17
|
+
"babylonjs": "^5.22.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@dev/build-tools": "1.0.0",
|