babylonjs-node-editor 8.5.0 → 8.6.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 +7 -13
- package/babylon.nodeEditor.js +1 -1
- package/babylon.nodeEditor.js.map +1 -1
- package/babylon.nodeEditor.max.js +75 -64
- package/babylon.nodeEditor.module.d.ts +14 -26
- package/package.json +2 -2
package/babylon.nodeEditor.d.ts
CHANGED
|
@@ -568,9 +568,6 @@ declare module BABYLON.NodeEditor {
|
|
|
568
568
|
}
|
|
569
569
|
|
|
570
570
|
|
|
571
|
-
/**
|
|
572
|
-
*
|
|
573
|
-
*/
|
|
574
571
|
export class MeshAttributeExistsDisplayManager implements BABYLON.NodeEditor.SharedUIComponents.IDisplayManager {
|
|
575
572
|
getHeaderClass(nodeData: BABYLON.NodeEditor.SharedUIComponents.INodeData): string;
|
|
576
573
|
shouldDisplayPortLabels(): boolean;
|
|
@@ -836,9 +833,6 @@ declare module BABYLON.NodeEditor {
|
|
|
836
833
|
}
|
|
837
834
|
|
|
838
835
|
|
|
839
|
-
/**
|
|
840
|
-
*
|
|
841
|
-
*/
|
|
842
836
|
export class PreviewManager {
|
|
843
837
|
private _nodeMaterial;
|
|
844
838
|
private _onBuildObserver;
|
|
@@ -1118,7 +1112,7 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
1118
1112
|
/**
|
|
1119
1113
|
* Used by both particleSystem and alphaBlendModes
|
|
1120
1114
|
*/
|
|
1121
|
-
export var
|
|
1115
|
+
export var CommonBlendModes: {
|
|
1122
1116
|
label: string;
|
|
1123
1117
|
value: number;
|
|
1124
1118
|
}[];
|
|
@@ -1127,14 +1121,14 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
1127
1121
|
* The below ParticleSystem consts were defined before new Engine alpha blend modes were added, so we have to reference
|
|
1128
1122
|
* the ParticleSystem.FOO consts explicitly (as the underlying var values are different - they get mapped to engine consts within baseParticleSystem.ts)
|
|
1129
1123
|
*/
|
|
1130
|
-
export var
|
|
1124
|
+
export var BlendModeOptions: {
|
|
1131
1125
|
label: string;
|
|
1132
1126
|
value: number;
|
|
1133
1127
|
}[];
|
|
1134
1128
|
/**
|
|
1135
1129
|
* Used to populated the alphaMode dropdown in our various tools (Node Editor, Inspector, etc.)
|
|
1136
1130
|
*/
|
|
1137
|
-
export var
|
|
1131
|
+
export var AlphaModeOptions: {
|
|
1138
1132
|
label: string;
|
|
1139
1133
|
value: number;
|
|
1140
1134
|
}[];
|
|
@@ -2675,7 +2669,7 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
2675
2669
|
isOpen: boolean;
|
|
2676
2670
|
}
|
|
2677
2671
|
export class TextureButtonLine extends React.Component<ITextureButtonLineProps, ITextureButtonLineState> {
|
|
2678
|
-
private static
|
|
2672
|
+
private static _IdGenerator;
|
|
2679
2673
|
private _id;
|
|
2680
2674
|
private _uploadInputRef;
|
|
2681
2675
|
constructor(props: ITextureButtonLineProps);
|
|
@@ -3274,7 +3268,7 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
3274
3268
|
iconLabel?: string;
|
|
3275
3269
|
}
|
|
3276
3270
|
export class FileMultipleButtonLineComponent extends React.Component<IFileMultipleButtonLineComponentProps> {
|
|
3277
|
-
private static
|
|
3271
|
+
private static _IdGenerator;
|
|
3278
3272
|
private _id;
|
|
3279
3273
|
private _uploadInputRef;
|
|
3280
3274
|
constructor(props: IFileMultipleButtonLineComponentProps);
|
|
@@ -3298,7 +3292,7 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
3298
3292
|
iconLabel?: string;
|
|
3299
3293
|
}
|
|
3300
3294
|
export class FileButtonLine extends React.Component<IFileButtonLineProps> {
|
|
3301
|
-
private static
|
|
3295
|
+
private static _IdGenerator;
|
|
3302
3296
|
private _id;
|
|
3303
3297
|
private _uploadInputRef;
|
|
3304
3298
|
constructor(props: IFileButtonLineProps);
|
|
@@ -4034,7 +4028,7 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
4034
4028
|
iconLabel?: string;
|
|
4035
4029
|
}
|
|
4036
4030
|
export class FileButtonLineComponent extends React.Component<IFileButtonLineComponentProps> {
|
|
4037
|
-
private static
|
|
4031
|
+
private static _IdGenerator;
|
|
4038
4032
|
private _id;
|
|
4039
4033
|
private _uploadInputRef;
|
|
4040
4034
|
constructor(props: IFileButtonLineComponentProps);
|