babylonjs-node-editor 8.3.1 → 8.4.0
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 +32 -0
- package/babylon.nodeEditor.js +1 -1
- package/babylon.nodeEditor.js.map +1 -1
- package/babylon.nodeEditor.max.js +144 -61
- package/babylon.nodeEditor.module.d.ts +58 -0
- package/package.json +2 -2
package/babylon.nodeEditor.d.ts
CHANGED
|
@@ -1109,6 +1109,38 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
1109
1109
|
|
|
1110
1110
|
|
|
1111
1111
|
|
|
1112
|
+
}
|
|
1113
|
+
declare module BABYLON.NodeEditor {
|
|
1114
|
+
|
|
1115
|
+
|
|
1116
|
+
}
|
|
1117
|
+
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
1118
|
+
/**
|
|
1119
|
+
* Used by both particleSystem and alphaBlendModes
|
|
1120
|
+
*/
|
|
1121
|
+
export var commonBlendModes: {
|
|
1122
|
+
label: string;
|
|
1123
|
+
value: number;
|
|
1124
|
+
}[];
|
|
1125
|
+
/**
|
|
1126
|
+
* Used to populated the blendMode dropdown in our various tools (Node Editor, Inspector, etc.)
|
|
1127
|
+
* The below ParticleSystem consts were defined before new Engine alpha blend modes were added, so we have to reference
|
|
1128
|
+
* the ParticleSystem.FOO consts explicitly (as the underlying var values are different - they get mapped to engine consts within baseParticleSystem.ts)
|
|
1129
|
+
*/
|
|
1130
|
+
export var blendModeOptions: {
|
|
1131
|
+
label: string;
|
|
1132
|
+
value: number;
|
|
1133
|
+
}[];
|
|
1134
|
+
/**
|
|
1135
|
+
* Used to populated the alphaMode dropdown in our various tools (Node Editor, Inspector, etc.)
|
|
1136
|
+
*/
|
|
1137
|
+
export var alphaModeOptions: {
|
|
1138
|
+
label: string;
|
|
1139
|
+
value: number;
|
|
1140
|
+
}[];
|
|
1141
|
+
|
|
1142
|
+
|
|
1143
|
+
|
|
1112
1144
|
}
|
|
1113
1145
|
declare module BABYLON.NodeEditor {
|
|
1114
1146
|
|