@babylonjs/node-editor 8.5.0 → 8.6.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.
@@ -851,9 +851,6 @@ export class OutputDisplayManager implements IDisplayManager {
851
851
  declare module "@babylonjs/node-editor/graphSystem/display/meshAttributeExistsDisplayManager" {
852
852
  import { IDisplayManager } from "@babylonjs/node-editor/nodeGraphSystem/interfaces/displayManager";
853
853
  import { INodeData } from "@babylonjs/node-editor/nodeGraphSystem/interfaces/nodeData";
854
- /**
855
- *
856
- */
857
854
  export class MeshAttributeExistsDisplayManager implements IDisplayManager {
858
855
  getHeaderClass(nodeData: INodeData): string;
859
856
  shouldDisplayPortLabels(): boolean;
@@ -1222,9 +1219,6 @@ declare module "@babylonjs/node-editor/components/preview/previewManager" {
1222
1219
  import { GlobalState } from "@babylonjs/node-editor/globalState";
1223
1220
  import "@babylonjs/core/Helpers/sceneHelpers";
1224
1221
  import "@babylonjs/core/Rendering/depthRendererSceneComponent";
1225
- /**
1226
- *
1227
- */
1228
1222
  export class PreviewManager {
1229
1223
  private _nodeMaterial;
1230
1224
  private _onBuildObserver;
@@ -1482,7 +1476,7 @@ declare module "@babylonjs/node-editor/constToOptionsMaps" {
1482
1476
  /**
1483
1477
  * Used by both particleSystem and alphaBlendModes
1484
1478
  */
1485
- export const commonBlendModes: {
1479
+ export const CommonBlendModes: {
1486
1480
  label: string;
1487
1481
  value: number;
1488
1482
  }[];
@@ -1491,14 +1485,14 @@ export const commonBlendModes: {
1491
1485
  * The below ParticleSystem consts were defined before new Engine alpha blend modes were added, so we have to reference
1492
1486
  * the ParticleSystem.FOO consts explicitly (as the underlying const values are different - they get mapped to engine consts within baseParticleSystem.ts)
1493
1487
  */
1494
- export const blendModeOptions: {
1488
+ export const BlendModeOptions: {
1495
1489
  label: string;
1496
1490
  value: number;
1497
1491
  }[];
1498
1492
  /**
1499
1493
  * Used to populated the alphaMode dropdown in our various tools (Node Editor, Inspector, etc.)
1500
1494
  */
1501
- export const alphaModeOptions: {
1495
+ export const AlphaModeOptions: {
1502
1496
  label: string;
1503
1497
  value: number;
1504
1498
  }[];
@@ -2971,7 +2965,7 @@ interface ITextureButtonLineState {
2971
2965
  isOpen: boolean;
2972
2966
  }
2973
2967
  export class TextureButtonLine extends React.Component<ITextureButtonLineProps, ITextureButtonLineState> {
2974
- private static _IDGenerator;
2968
+ private static _IdGenerator;
2975
2969
  private _id;
2976
2970
  private _uploadInputRef;
2977
2971
  constructor(props: ITextureButtonLineProps);
@@ -3510,7 +3504,7 @@ interface IFileMultipleButtonLineComponentProps {
3510
3504
  iconLabel?: string;
3511
3505
  }
3512
3506
  export class FileMultipleButtonLineComponent extends React.Component<IFileMultipleButtonLineComponentProps> {
3513
- private static _IDGenerator;
3507
+ private static _IdGenerator;
3514
3508
  private _id;
3515
3509
  private _uploadInputRef;
3516
3510
  constructor(props: IFileMultipleButtonLineComponentProps);
@@ -3530,7 +3524,7 @@ interface IFileButtonLineProps {
3530
3524
  iconLabel?: string;
3531
3525
  }
3532
3526
  export class FileButtonLine extends React.Component<IFileButtonLineProps> {
3533
- private static _IDGenerator;
3527
+ private static _IdGenerator;
3534
3528
  private _id;
3535
3529
  private _uploadInputRef;
3536
3530
  constructor(props: IFileButtonLineProps);
@@ -4140,7 +4134,7 @@ export interface IFileButtonLineComponentProps {
4140
4134
  iconLabel?: string;
4141
4135
  }
4142
4136
  export class FileButtonLineComponent extends React.Component<IFileButtonLineComponentProps> {
4143
- private static _IDGenerator;
4137
+ private static _IdGenerator;
4144
4138
  private _id;
4145
4139
  private _uploadInputRef;
4146
4140
  constructor(props: IFileButtonLineComponentProps);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@babylonjs/node-editor",
3
- "version": "8.5.0",
3
+ "version": "8.6.0",
4
4
  "main": "dist/babylon.nodeEditor.max.js",
5
5
  "module": "dist/babylon.nodeEditor.max.js",
6
6
  "esnext": "dist/babylon.nodeEditor.max.js",
@@ -23,7 +23,7 @@
23
23
  "@types/react-dom": ">=16.0.9"
24
24
  },
25
25
  "devDependencies": {
26
- "@babylonjs/core": "^8.5.0",
26
+ "@babylonjs/core": "^8.6.0",
27
27
  "react": "^18.2.0",
28
28
  "react-dom": "^18.2.0"
29
29
  },