babylonjs-node-editor 8.10.1 → 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.
|
@@ -2278,6 +2278,8 @@ export class GraphNode {
|
|
|
2278
2278
|
* Expand the node
|
|
2279
2279
|
*/
|
|
2280
2280
|
expand(): void;
|
|
2281
|
+
private _portUICount;
|
|
2282
|
+
private _buildInputPorts;
|
|
2281
2283
|
appendVisual(root: HTMLDivElement, owner: GraphCanvasComponent): void;
|
|
2282
2284
|
dispose(): void;
|
|
2283
2285
|
}
|
|
@@ -2763,6 +2765,7 @@ export interface INodeData {
|
|
|
2763
2765
|
isActive?: boolean;
|
|
2764
2766
|
setIsActive?: (value: boolean) => void;
|
|
2765
2767
|
canBeActivated?: boolean;
|
|
2768
|
+
onInputCountChanged?: () => void;
|
|
2766
2769
|
}
|
|
2767
2770
|
|
|
2768
2771
|
}
|
|
@@ -6789,6 +6792,8 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
6789
6792
|
* Expand the node
|
|
6790
6793
|
*/
|
|
6791
6794
|
expand(): void;
|
|
6795
|
+
private _portUICount;
|
|
6796
|
+
private _buildInputPorts;
|
|
6792
6797
|
appendVisual(root: HTMLDivElement, owner: BABYLON.NodeEditor.SharedUIComponents.GraphCanvasComponent): void;
|
|
6793
6798
|
dispose(): void;
|
|
6794
6799
|
}
|
|
@@ -7298,6 +7303,7 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
7298
7303
|
isActive?: boolean;
|
|
7299
7304
|
setIsActive?: (value: boolean) => void;
|
|
7300
7305
|
canBeActivated?: boolean;
|
|
7306
|
+
onInputCountChanged?: () => void;
|
|
7301
7307
|
}
|
|
7302
7308
|
|
|
7303
7309
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-node-editor",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.12.1",
|
|
4
4
|
"main": "babylon.nodeEditor.js",
|
|
5
5
|
"types": "babylon.nodeEditor.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",
|