babylonjs-node-geometry-editor 7.45.0 → 7.47.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.
|
@@ -1639,6 +1639,8 @@ export class StateManager {
|
|
|
1639
1639
|
data: INodeData;
|
|
1640
1640
|
name: string;
|
|
1641
1641
|
}>;
|
|
1642
|
+
private _isRebuildQueued;
|
|
1643
|
+
queueRebuildCommand(): void;
|
|
1642
1644
|
}
|
|
1643
1645
|
|
|
1644
1646
|
}
|
|
@@ -2343,6 +2345,9 @@ export interface INodeData {
|
|
|
2343
2345
|
outputs: IPortData[];
|
|
2344
2346
|
invisibleEndpoints?: Nullable<any[]>;
|
|
2345
2347
|
isConnectedToOutput?: () => boolean;
|
|
2348
|
+
isActive?: boolean;
|
|
2349
|
+
setIsActive?: (value: boolean) => void;
|
|
2350
|
+
canBeActivated?: boolean;
|
|
2346
2351
|
}
|
|
2347
2352
|
|
|
2348
2353
|
}
|
|
@@ -5808,6 +5813,8 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
5808
5813
|
data: BABYLON.NodeGeometryEditor.SharedUIComponents.INodeData;
|
|
5809
5814
|
name: string;
|
|
5810
5815
|
}>;
|
|
5816
|
+
private _isRebuildQueued;
|
|
5817
|
+
queueRebuildCommand(): void;
|
|
5811
5818
|
}
|
|
5812
5819
|
|
|
5813
5820
|
|
|
@@ -6544,6 +6551,9 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
6544
6551
|
outputs: BABYLON.NodeGeometryEditor.SharedUIComponents.IPortData[];
|
|
6545
6552
|
invisibleEndpoints?: BABYLON.Nullable<any[]>;
|
|
6546
6553
|
isConnectedToOutput?: () => boolean;
|
|
6554
|
+
isActive?: boolean;
|
|
6555
|
+
setIsActive?: (value: boolean) => void;
|
|
6556
|
+
canBeActivated?: boolean;
|
|
6547
6557
|
}
|
|
6548
6558
|
|
|
6549
6559
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-node-geometry-editor",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.47.0",
|
|
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*.* -g"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"babylonjs": "^7.
|
|
17
|
+
"babylonjs": "^7.47.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@dev/build-tools": "1.0.0",
|