babylonjs-node-editor 5.13.0 → 5.13.3
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
|
|
|
@@ -2678,8 +2679,8 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
2678
2679
|
onDisposedObservable: BABYLON.Observable<NodeLink>;
|
|
2679
2680
|
get isVisible(): boolean;
|
|
2680
2681
|
set isVisible(value: boolean);
|
|
2681
|
-
get portA(): BABYLON.NodeEditor.SharedUIComponents.
|
|
2682
|
-
get portB(): BABYLON.NodeEditor.SharedUIComponents.
|
|
2682
|
+
get portA(): BABYLON.NodeEditor.SharedUIComponents.FrameNodePort | BABYLON.NodeEditor.SharedUIComponents.NodePort;
|
|
2683
|
+
get portB(): BABYLON.NodeEditor.SharedUIComponents.FrameNodePort | BABYLON.NodeEditor.SharedUIComponents.NodePort | undefined;
|
|
2683
2684
|
get nodeA(): BABYLON.NodeEditor.SharedUIComponents.GraphNode;
|
|
2684
2685
|
get nodeB(): BABYLON.NodeEditor.SharedUIComponents.GraphNode | undefined;
|
|
2685
2686
|
update(endX?: number, endY?: number, straight?: boolean): void;
|
|
@@ -2753,7 +2754,7 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
2753
2754
|
onGraphNodeRemovalObservable: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.GraphNode>;
|
|
2754
2755
|
onSelectionBoxMoved: BABYLON.Observable<ClientRect | DOMRect>;
|
|
2755
2756
|
onCandidateLinkMoved: BABYLON.Observable<BABYLON.Nullable<BABYLON.Vector2>>;
|
|
2756
|
-
onCandidatePortSelectedObservable: BABYLON.Observable<BABYLON.Nullable<BABYLON.NodeEditor.SharedUIComponents.
|
|
2757
|
+
onCandidatePortSelectedObservable: BABYLON.Observable<BABYLON.Nullable<BABYLON.NodeEditor.SharedUIComponents.FrameNodePort | BABYLON.NodeEditor.SharedUIComponents.NodePort>>;
|
|
2757
2758
|
onNewNodeCreatedObservable: BABYLON.Observable<BABYLON.NodeEditor.SharedUIComponents.GraphNode>;
|
|
2758
2759
|
onRebuildRequiredObservable: BABYLON.Observable<boolean>;
|
|
2759
2760
|
onErrorMessageDialogRequiredObservable: BABYLON.Observable<string>;
|