@babylonjs/node-geometry-editor 7.44.1 → 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.
@@ -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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@babylonjs/node-geometry-editor",
3
- "version": "7.44.1",
3
+ "version": "7.46.0",
4
4
  "main": "dist/babylon.nodeGeometryEditor.max.js",
5
5
  "module": "dist/babylon.nodeGeometryEditor.max.js",
6
6
  "esnext": "dist/babylon.nodeGeometryEditor.max.js",
@@ -23,7 +23,7 @@
23
23
  "@types/react-dom": ">=16.0.9"
24
24
  },
25
25
  "devDependencies": {
26
- "@babylonjs/core": "^7.44.1",
26
+ "@babylonjs/core": "^7.46.0",
27
27
  "react": "^17.0.2",
28
28
  "react-dom": "^17.0.2"
29
29
  },