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.
|
@@ -1400,6 +1400,8 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
1400
1400
|
data: BABYLON.NodeGeometryEditor.SharedUIComponents.INodeData;
|
|
1401
1401
|
name: string;
|
|
1402
1402
|
}>;
|
|
1403
|
+
private _isRebuildQueued;
|
|
1404
|
+
queueRebuildCommand(): void;
|
|
1403
1405
|
}
|
|
1404
1406
|
|
|
1405
1407
|
|
|
@@ -2136,6 +2138,9 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
2136
2138
|
outputs: BABYLON.NodeGeometryEditor.SharedUIComponents.IPortData[];
|
|
2137
2139
|
invisibleEndpoints?: BABYLON.Nullable<any[]>;
|
|
2138
2140
|
isConnectedToOutput?: () => boolean;
|
|
2141
|
+
isActive?: boolean;
|
|
2142
|
+
setIsActive?: (value: boolean) => void;
|
|
2143
|
+
canBeActivated?: boolean;
|
|
2139
2144
|
}
|
|
2140
2145
|
|
|
2141
2146
|
|