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/graph
|
|
|
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/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
|
}
|
|
@@ -5021,7 +5022,6 @@ declare module BABYLON.NodeGeometryEditor {
|
|
|
5021
5022
|
componentDidMount(): void;
|
|
5022
5023
|
componentWillUnmount(): void;
|
|
5023
5024
|
processInputBlockUpdate(): void;
|
|
5024
|
-
renderInputBlock(block: BABYLON.GeometryInputBlock): import("react/jsx-runtime").JSX.Element | null;
|
|
5025
5025
|
load(file: File): void;
|
|
5026
5026
|
loadFrame(file: File): void;
|
|
5027
5027
|
save(): void;
|
|
@@ -6207,6 +6207,8 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
6207
6207
|
* Expand the node
|
|
6208
6208
|
*/
|
|
6209
6209
|
expand(): void;
|
|
6210
|
+
private _portUICount;
|
|
6211
|
+
private _buildInputPorts;
|
|
6210
6212
|
appendVisual(root: HTMLDivElement, owner: BABYLON.NodeGeometryEditor.SharedUIComponents.GraphCanvasComponent): void;
|
|
6211
6213
|
dispose(): void;
|
|
6212
6214
|
}
|
|
@@ -6716,6 +6718,7 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
6716
6718
|
isActive?: boolean;
|
|
6717
6719
|
setIsActive?: (value: boolean) => void;
|
|
6718
6720
|
canBeActivated?: boolean;
|
|
6721
|
+
onInputCountChanged?: () => void;
|
|
6719
6722
|
}
|
|
6720
6723
|
|
|
6721
6724
|
|
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": "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": "^8.
|
|
17
|
+
"babylonjs": "^8.12.1"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@dev/build-tools": "1.0.0",
|