babylonjs-node-geometry-editor 8.3.1 → 8.4.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.
@@ -1128,6 +1128,32 @@ export function getClassNameWithNamespace(obj: any): {
1128
1128
  babylonNamespace: string;
1129
1129
  };
1130
1130
 
1131
+ }
1132
+ declare module "babylonjs-node-geometry-editor/constToOptionsMaps" {
1133
+ /**
1134
+ * Used by both particleSystem and alphaBlendModes
1135
+ */
1136
+ export const commonBlendModes: {
1137
+ label: string;
1138
+ value: number;
1139
+ }[];
1140
+ /**
1141
+ * Used to populated the blendMode dropdown in our various tools (Node Editor, Inspector, etc.)
1142
+ * The below ParticleSystem consts were defined before new Engine alpha blend modes were added, so we have to reference
1143
+ * the ParticleSystem.FOO consts explicitly (as the underlying const values are different - they get mapped to engine consts within baseParticleSystem.ts)
1144
+ */
1145
+ export const blendModeOptions: {
1146
+ label: string;
1147
+ value: number;
1148
+ }[];
1149
+ /**
1150
+ * Used to populated the alphaMode dropdown in our various tools (Node Editor, Inspector, etc.)
1151
+ */
1152
+ export const alphaModeOptions: {
1153
+ label: string;
1154
+ value: number;
1155
+ }[];
1156
+
1131
1157
  }
1132
1158
  declare module "babylonjs-node-geometry-editor/tabs/propertyGrids/lockObject" {
1133
1159
  /**
@@ -5340,6 +5366,38 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
5340
5366
 
5341
5367
 
5342
5368
 
5369
+ }
5370
+ declare module BABYLON.NodeGeometryEditor {
5371
+
5372
+
5373
+ }
5374
+ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
5375
+ /**
5376
+ * Used by both particleSystem and alphaBlendModes
5377
+ */
5378
+ export var commonBlendModes: {
5379
+ label: string;
5380
+ value: number;
5381
+ }[];
5382
+ /**
5383
+ * Used to populated the blendMode dropdown in our various tools (Node Editor, Inspector, etc.)
5384
+ * The below ParticleSystem consts were defined before new Engine alpha blend modes were added, so we have to reference
5385
+ * the ParticleSystem.FOO consts explicitly (as the underlying var values are different - they get mapped to engine consts within baseParticleSystem.ts)
5386
+ */
5387
+ export var blendModeOptions: {
5388
+ label: string;
5389
+ value: number;
5390
+ }[];
5391
+ /**
5392
+ * Used to populated the alphaMode dropdown in our various tools (Node Editor, Inspector, etc.)
5393
+ */
5394
+ export var alphaModeOptions: {
5395
+ label: string;
5396
+ value: number;
5397
+ }[];
5398
+
5399
+
5400
+
5343
5401
  }
5344
5402
  declare module BABYLON.NodeGeometryEditor {
5345
5403
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-node-geometry-editor",
3
- "version": "8.3.1",
3
+ "version": "8.4.1",
4
4
  "main": "babylon.nodeGeometryEditor.js",
5
5
  "types": "babylon.nodeGeometryEditor.module.d.ts",
6
6
  "files": [
@@ -14,7 +14,7 @@
14
14
  "clean": "rimraf dist && rimraf babylon*.* -g"
15
15
  },
16
16
  "dependencies": {
17
- "babylonjs": "^8.3.1"
17
+ "babylonjs": "^8.4.1"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@dev/build-tools": "1.0.0",