babylonjs-node-editor 5.13.0 → 5.13.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
|
@@ -2272,7 +2272,7 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
2272
2272
|
reset(): void;
|
|
2273
2273
|
connectPorts(pointA: BABYLON.NodeEditor.SharedUIComponents.IPortData, pointB: BABYLON.NodeEditor.SharedUIComponents.IPortData): void;
|
|
2274
2274
|
removeLink(link: BABYLON.NodeEditor.SharedUIComponents.NodeLink): void;
|
|
2275
|
-
appendNode(
|
|
2275
|
+
appendNode(nodeData: BABYLON.NodeEditor.SharedUIComponents.INodeData): BABYLON.NodeEditor.SharedUIComponents.GraphNode;
|
|
2276
2276
|
distributeGraph(): void;
|
|
2277
2277
|
componentDidMount(): void;
|
|
2278
2278
|
onMove(evt: React.PointerEvent): void;
|
|
@@ -2543,6 +2543,7 @@ declare module BABYLON.NodeEditor {
|
|
|
2543
2543
|
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
2544
2544
|
export interface INodeContainer {
|
|
2545
2545
|
nodes: BABYLON.NodeEditor.SharedUIComponents.GraphNode[];
|
|
2546
|
+
appendNode(data: BABYLON.NodeEditor.SharedUIComponents.INodeData): BABYLON.NodeEditor.SharedUIComponents.GraphNode;
|
|
2546
2547
|
}
|
|
2547
2548
|
|
|
2548
2549
|
|