babylonjs-node-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.
package/babylon.nodeEditor.d.ts
CHANGED
|
@@ -1940,6 +1940,8 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
1940
1940
|
* Expand the node
|
|
1941
1941
|
*/
|
|
1942
1942
|
expand(): void;
|
|
1943
|
+
private _portUICount;
|
|
1944
|
+
private _buildInputPorts;
|
|
1943
1945
|
appendVisual(root: HTMLDivElement, owner: BABYLON.NodeEditor.SharedUIComponents.GraphCanvasComponent): void;
|
|
1944
1946
|
dispose(): void;
|
|
1945
1947
|
}
|
|
@@ -2449,6 +2451,7 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
2449
2451
|
isActive?: boolean;
|
|
2450
2452
|
setIsActive?: (value: boolean) => void;
|
|
2451
2453
|
canBeActivated?: boolean;
|
|
2454
|
+
onInputCountChanged?: () => void;
|
|
2452
2455
|
}
|
|
2453
2456
|
|
|
2454
2457
|
|