@babylonjs/node-geometry-editor 8.11.0 → 8.12.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.
|
@@ -740,7 +740,6 @@ import { GraphFrame } from "@babylonjs/node-geometry-editor/nodeGraphSystem/grap
|
|
|
740
740
|
import { NodePort } from "@babylonjs/node-geometry-editor/nodeGraphSystem/nodePort";
|
|
741
741
|
import { FrameNodePort } from "@babylonjs/node-geometry-editor/nodeGraphSystem/frameNodePort";
|
|
742
742
|
import { LockObject } from "@babylonjs/node-geometry-editor/tabs/propertyGrids/lockObject";
|
|
743
|
-
import { GeometryInputBlock } from "@babylonjs/core/Meshes/Node/Blocks/geometryInputBlock";
|
|
744
743
|
interface IPropertyTabComponentProps {
|
|
745
744
|
globalState: GlobalState;
|
|
746
745
|
lockObject: LockObject;
|
|
@@ -758,7 +757,6 @@ export class PropertyTabComponent extends React.Component<IPropertyTabComponentP
|
|
|
758
757
|
componentDidMount(): void;
|
|
759
758
|
componentWillUnmount(): void;
|
|
760
759
|
processInputBlockUpdate(): void;
|
|
761
|
-
|
|
762
760
|
load(file: File): void;
|
|
763
761
|
loadFrame(file: File): void;
|
|
764
762
|
save(): void;
|
|
@@ -1935,6 +1933,8 @@ export class GraphNode {
|
|
|
1935
1933
|
* Expand the node
|
|
1936
1934
|
*/
|
|
1937
1935
|
expand(): void;
|
|
1936
|
+
private _portUICount;
|
|
1937
|
+
private _buildInputPorts;
|
|
1938
1938
|
appendVisual(root: HTMLDivElement, owner: GraphCanvasComponent): void;
|
|
1939
1939
|
dispose(): void;
|
|
1940
1940
|
}
|
|
@@ -2420,6 +2420,7 @@ export interface INodeData {
|
|
|
2420
2420
|
isActive?: boolean;
|
|
2421
2421
|
setIsActive?: (value: boolean) => void;
|
|
2422
2422
|
canBeActivated?: boolean;
|
|
2423
|
+
onInputCountChanged?: () => void;
|
|
2423
2424
|
}
|
|
2424
2425
|
|
|
2425
2426
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@babylonjs/node-geometry-editor",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.12.1",
|
|
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": "^8.
|
|
26
|
+
"@babylonjs/core": "^8.12.1",
|
|
27
27
|
"react": "^18.2.0",
|
|
28
28
|
"react-dom": "^18.2.0"
|
|
29
29
|
},
|