@babylonjs/gui-editor 7.45.0 → 7.46.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.
@@ -2151,6 +2151,8 @@ export class StateManager {
|
|
2151
2151
|
data: INodeData;
|
2152
2152
|
name: string;
|
2153
2153
|
}>;
|
2154
|
+
private _isRebuildQueued;
|
2155
|
+
queueRebuildCommand(): void;
|
2154
2156
|
}
|
2155
2157
|
|
2156
2158
|
}
|
@@ -2855,6 +2857,9 @@ export interface INodeData {
|
|
2855
2857
|
outputs: IPortData[];
|
2856
2858
|
invisibleEndpoints?: Nullable<any[]>;
|
2857
2859
|
isConnectedToOutput?: () => boolean;
|
2860
|
+
isActive?: boolean;
|
2861
|
+
setIsActive?: (value: boolean) => void;
|
2862
|
+
canBeActivated?: boolean;
|
2858
2863
|
}
|
2859
2864
|
|
2860
2865
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@babylonjs/gui-editor",
|
3
|
-
"version": "7.
|
3
|
+
"version": "7.46.0",
|
4
4
|
"main": "dist/babylon.guiEditor.max.js",
|
5
5
|
"module": "dist/babylon.guiEditor.max.js",
|
6
6
|
"esnext": "dist/babylon.guiEditor.max.js",
|
@@ -24,8 +24,8 @@
|
|
24
24
|
"@types/react-dom": ">=16.0.9"
|
25
25
|
},
|
26
26
|
"devDependencies": {
|
27
|
-
"@babylonjs/core": "^7.
|
28
|
-
"@babylonjs/gui": "^7.
|
27
|
+
"@babylonjs/core": "^7.46.0",
|
28
|
+
"@babylonjs/gui": "^7.46.0",
|
29
29
|
"react": "^17.0.2",
|
30
30
|
"react-dom": "^17.0.2"
|
31
31
|
},
|