babylonjs-gui-editor 8.3.0 → 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.
@@ -1333,6 +1333,38 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
1333
1333
 
1334
1334
 
1335
1335
 
1336
+ }
1337
+ declare module BABYLON {
1338
+
1339
+
1340
+ }
1341
+ declare module BABYLON.GuiEditor.SharedUIComponents {
1342
+ /**
1343
+ * Used by both particleSystem and alphaBlendModes
1344
+ */
1345
+ export var commonBlendModes: {
1346
+ label: string;
1347
+ value: number;
1348
+ }[];
1349
+ /**
1350
+ * Used to populated the blendMode dropdown in our various tools (Node Editor, Inspector, etc.)
1351
+ * The below ParticleSystem consts were defined before new Engine alpha blend modes were added, so we have to reference
1352
+ * the ParticleSystem.FOO consts explicitly (as the underlying var values are different - they get mapped to engine consts within baseParticleSystem.ts)
1353
+ */
1354
+ export var blendModeOptions: {
1355
+ label: string;
1356
+ value: number;
1357
+ }[];
1358
+ /**
1359
+ * Used to populated the alphaMode dropdown in our various tools (Node Editor, Inspector, etc.)
1360
+ */
1361
+ export var alphaModeOptions: {
1362
+ label: string;
1363
+ value: number;
1364
+ }[];
1365
+
1366
+
1367
+
1336
1368
  }
1337
1369
  declare module BABYLON {
1338
1370