@babylonjs/node-editor 6.7.0 → 6.8.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.
@@ -1123,6 +1123,7 @@ export * from "@babylonjs/node-editor/index";
|
|
1123
1123
|
declare module "@babylonjs/node-editor/nodeEditor" {
|
1124
1124
|
import { NodeMaterial } from "@babylonjs/core/Materials/Node/nodeMaterial";
|
1125
1125
|
import { Observable } from "@babylonjs/core/Misc/observable";
|
1126
|
+
import { Color4 } from "@babylonjs/core/Maths/math.color";
|
1126
1127
|
/**
|
1127
1128
|
* Interface used to specify creation options for the node editor
|
1128
1129
|
*/
|
@@ -1134,6 +1135,7 @@ export interface INodeEditorOptions {
|
|
1134
1135
|
action: (data: string) => Promise<void>;
|
1135
1136
|
};
|
1136
1137
|
customLoadObservable?: Observable<any>;
|
1138
|
+
backgroundColor?: Color4;
|
1137
1139
|
}
|
1138
1140
|
/**
|
1139
1141
|
* Class used to create a node editor
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@babylonjs/node-editor",
|
3
|
-
"version": "6.
|
3
|
+
"version": "6.8.1",
|
4
4
|
"main": "dist/babylon.nodeEditor.max.js",
|
5
5
|
"module": "dist/babylon.nodeEditor.max.js",
|
6
6
|
"esnext": "dist/babylon.nodeEditor.max.js",
|
@@ -23,11 +23,9 @@
|
|
23
23
|
"@types/react-dom": ">=16.0.9"
|
24
24
|
},
|
25
25
|
"devDependencies": {
|
26
|
-
"@babylonjs/core": "^6.
|
26
|
+
"@babylonjs/core": "^6.8.1",
|
27
27
|
"react": "^17.0.2",
|
28
|
-
"react-dom": "^17.0.2"
|
29
|
-
"rimraf": "^3.0.2",
|
30
|
-
"typescript": "^4.4.4"
|
28
|
+
"react-dom": "^17.0.2"
|
31
29
|
},
|
32
30
|
"keywords": [
|
33
31
|
"3D",
|