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.
|
@@ -2558,7 +2558,7 @@ export class GraphCanvasComponent extends React.Component<IGraphCanvasComponentP
|
|
|
2558
2558
|
reset(): void;
|
|
2559
2559
|
connectPorts(pointA: IPortData, pointB: IPortData): void;
|
|
2560
2560
|
removeLink(link: NodeLink): void;
|
|
2561
|
-
appendNode(
|
|
2561
|
+
appendNode(nodeData: INodeData): GraphNode;
|
|
2562
2562
|
distributeGraph(): void;
|
|
2563
2563
|
componentDidMount(): void;
|
|
2564
2564
|
onMove(evt: React.PointerEvent): void;
|
|
@@ -2825,8 +2825,10 @@ export interface IDisplayManager {
|
|
|
2825
2825
|
}
|
|
2826
2826
|
declare module "babylonjs-node-editor/nodeGraphSystem/interfaces/nodeContainer" {
|
|
2827
2827
|
import { GraphNode } from "babylonjs-node-editor/nodeGraphSystem/graphNode";
|
|
2828
|
+
import { INodeData } from "babylonjs-node-editor/nodeGraphSystem/interfaces/nodeData";
|
|
2828
2829
|
export interface INodeContainer {
|
|
2829
2830
|
nodes: GraphNode[];
|
|
2831
|
+
appendNode(data: INodeData): GraphNode;
|
|
2830
2832
|
}
|
|
2831
2833
|
|
|
2832
2834
|
}
|
|
@@ -5742,7 +5744,7 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
5742
5744
|
reset(): void;
|
|
5743
5745
|
connectPorts(pointA: BABYLON.NodeEditor.SharedUIComponents.IPortData, pointB: BABYLON.NodeEditor.SharedUIComponents.IPortData): void;
|
|
5744
5746
|
removeLink(link: BABYLON.NodeEditor.SharedUIComponents.NodeLink): void;
|
|
5745
|
-
appendNode(
|
|
5747
|
+
appendNode(nodeData: BABYLON.NodeEditor.SharedUIComponents.INodeData): BABYLON.NodeEditor.SharedUIComponents.GraphNode;
|
|
5746
5748
|
distributeGraph(): void;
|
|
5747
5749
|
componentDidMount(): void;
|
|
5748
5750
|
onMove(evt: React.PointerEvent): void;
|
|
@@ -6013,6 +6015,7 @@ declare module BABYLON.NodeEditor {
|
|
|
6013
6015
|
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
6014
6016
|
export interface INodeContainer {
|
|
6015
6017
|
nodes: BABYLON.NodeEditor.SharedUIComponents.GraphNode[];
|
|
6018
|
+
appendNode(data: BABYLON.NodeEditor.SharedUIComponents.INodeData): BABYLON.NodeEditor.SharedUIComponents.GraphNode;
|
|
6016
6019
|
}
|
|
6017
6020
|
|
|
6018
6021
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-node-editor",
|
|
3
|
-
"version": "5.13.
|
|
3
|
+
"version": "5.13.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*.*"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"babylonjs": "^5.13.
|
|
17
|
+
"babylonjs": "^5.13.1"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@dev/build-tools": "1.0.0",
|