babylonjs-gui-editor 8.10.1 → 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.guiEditor.d.ts
CHANGED
|
@@ -2167,6 +2167,8 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
2167
2167
|
* Expand the node
|
|
2168
2168
|
*/
|
|
2169
2169
|
expand(): void;
|
|
2170
|
+
private _portUICount;
|
|
2171
|
+
private _buildInputPorts;
|
|
2170
2172
|
appendVisual(root: HTMLDivElement, owner: BABYLON.GuiEditor.SharedUIComponents.GraphCanvasComponent): void;
|
|
2171
2173
|
dispose(): void;
|
|
2172
2174
|
}
|
|
@@ -2676,6 +2678,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
2676
2678
|
isActive?: boolean;
|
|
2677
2679
|
setIsActive?: (value: boolean) => void;
|
|
2678
2680
|
canBeActivated?: boolean;
|
|
2681
|
+
onInputCountChanged?: () => void;
|
|
2679
2682
|
}
|
|
2680
2683
|
|
|
2681
2684
|
|
|
@@ -2433,6 +2433,8 @@ export class GraphNode {
|
|
|
2433
2433
|
* Expand the node
|
|
2434
2434
|
*/
|
|
2435
2435
|
expand(): void;
|
|
2436
|
+
private _portUICount;
|
|
2437
|
+
private _buildInputPorts;
|
|
2436
2438
|
appendVisual(root: HTMLDivElement, owner: GraphCanvasComponent): void;
|
|
2437
2439
|
dispose(): void;
|
|
2438
2440
|
}
|
|
@@ -2918,6 +2920,7 @@ export interface INodeData {
|
|
|
2918
2920
|
isActive?: boolean;
|
|
2919
2921
|
setIsActive?: (value: boolean) => void;
|
|
2920
2922
|
canBeActivated?: boolean;
|
|
2923
|
+
onInputCountChanged?: () => void;
|
|
2921
2924
|
}
|
|
2922
2925
|
|
|
2923
2926
|
}
|
|
@@ -7171,6 +7174,8 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7171
7174
|
* Expand the node
|
|
7172
7175
|
*/
|
|
7173
7176
|
expand(): void;
|
|
7177
|
+
private _portUICount;
|
|
7178
|
+
private _buildInputPorts;
|
|
7174
7179
|
appendVisual(root: HTMLDivElement, owner: BABYLON.GuiEditor.SharedUIComponents.GraphCanvasComponent): void;
|
|
7175
7180
|
dispose(): void;
|
|
7176
7181
|
}
|
|
@@ -7680,6 +7685,7 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7680
7685
|
isActive?: boolean;
|
|
7681
7686
|
setIsActive?: (value: boolean) => void;
|
|
7682
7687
|
canBeActivated?: boolean;
|
|
7688
|
+
onInputCountChanged?: () => void;
|
|
7683
7689
|
}
|
|
7684
7690
|
|
|
7685
7691
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-gui-editor",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.12.1",
|
|
4
4
|
"main": "babylon.guiEditor.max.js",
|
|
5
5
|
"types": "babylon.guiEditor.module.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"clean": "rimraf dist && rimraf babylon*.* -g"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"babylonjs": "^8.
|
|
18
|
-
"babylonjs-gui": "^8.
|
|
17
|
+
"babylonjs": "^8.12.1",
|
|
18
|
+
"babylonjs-gui": "^8.12.1"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@dev/build-tools": "1.0.0",
|