babylonjs-node-render-graph-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.
@@ -1033,6 +1033,32 @@ export function getClassNameWithNamespace(obj: any): {
1033
1033
  babylonNamespace: string;
1034
1034
  };
1035
1035
 
1036
+ }
1037
+ declare module "babylonjs-node-render-graph-editor/constToOptionsMaps" {
1038
+ /**
1039
+ * Used by both particleSystem and alphaBlendModes
1040
+ */
1041
+ export const commonBlendModes: {
1042
+ label: string;
1043
+ value: number;
1044
+ }[];
1045
+ /**
1046
+ * Used to populated the blendMode dropdown in our various tools (Node Editor, Inspector, etc.)
1047
+ * The below ParticleSystem consts were defined before new Engine alpha blend modes were added, so we have to reference
1048
+ * the ParticleSystem.FOO consts explicitly (as the underlying const values are different - they get mapped to engine consts within baseParticleSystem.ts)
1049
+ */
1050
+ export const blendModeOptions: {
1051
+ label: string;
1052
+ value: number;
1053
+ }[];
1054
+ /**
1055
+ * Used to populated the alphaMode dropdown in our various tools (Node Editor, Inspector, etc.)
1056
+ */
1057
+ export const alphaModeOptions: {
1058
+ label: string;
1059
+ value: number;
1060
+ }[];
1061
+
1036
1062
  }
1037
1063
  declare module "babylonjs-node-render-graph-editor/tabs/propertyGrids/lockObject" {
1038
1064
  /**
@@ -5229,6 +5255,38 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
5229
5255
 
5230
5256
 
5231
5257
 
5258
+ }
5259
+ declare module BABYLON.NodeRenderGraphEditor {
5260
+
5261
+
5262
+ }
5263
+ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
5264
+ /**
5265
+ * Used by both particleSystem and alphaBlendModes
5266
+ */
5267
+ export var commonBlendModes: {
5268
+ label: string;
5269
+ value: number;
5270
+ }[];
5271
+ /**
5272
+ * Used to populated the blendMode dropdown in our various tools (Node Editor, Inspector, etc.)
5273
+ * The below ParticleSystem consts were defined before new Engine alpha blend modes were added, so we have to reference
5274
+ * the ParticleSystem.FOO consts explicitly (as the underlying var values are different - they get mapped to engine consts within baseParticleSystem.ts)
5275
+ */
5276
+ export var blendModeOptions: {
5277
+ label: string;
5278
+ value: number;
5279
+ }[];
5280
+ /**
5281
+ * Used to populated the alphaMode dropdown in our various tools (Node Editor, Inspector, etc.)
5282
+ */
5283
+ export var alphaModeOptions: {
5284
+ label: string;
5285
+ value: number;
5286
+ }[];
5287
+
5288
+
5289
+
5232
5290
  }
5233
5291
  declare module BABYLON.NodeRenderGraphEditor {
5234
5292
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babylonjs-node-render-graph-editor",
3
- "version": "8.3.0",
3
+ "version": "8.4.0",
4
4
  "main": "babylon.nodeRenderGraphEditor.js",
5
5
  "types": "babylon.nodeRenderGraphEditor.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.0"
17
+ "babylonjs": "^8.4.0"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@dev/build-tools": "1.0.0",