@babylonjs/node-render-graph-editor 8.5.0 → 8.6.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.
|
@@ -830,7 +830,7 @@ export class PreviewManager {
|
|
|
830
830
|
private _prepareLights;
|
|
831
831
|
private _createNodeRenderGraph;
|
|
832
832
|
private _getMesh;
|
|
833
|
-
private
|
|
833
|
+
private _buildGraphAsync;
|
|
834
834
|
private _frameCamera;
|
|
835
835
|
private _prepareBackgroundHDR;
|
|
836
836
|
private _prepareScene;
|
|
@@ -1038,7 +1038,7 @@ declare module "@babylonjs/node-render-graph-editor/constToOptionsMaps" {
|
|
|
1038
1038
|
/**
|
|
1039
1039
|
* Used by both particleSystem and alphaBlendModes
|
|
1040
1040
|
*/
|
|
1041
|
-
export const
|
|
1041
|
+
export const CommonBlendModes: {
|
|
1042
1042
|
label: string;
|
|
1043
1043
|
value: number;
|
|
1044
1044
|
}[];
|
|
@@ -1047,14 +1047,14 @@ export const commonBlendModes: {
|
|
|
1047
1047
|
* The below ParticleSystem consts were defined before new Engine alpha blend modes were added, so we have to reference
|
|
1048
1048
|
* the ParticleSystem.FOO consts explicitly (as the underlying const values are different - they get mapped to engine consts within baseParticleSystem.ts)
|
|
1049
1049
|
*/
|
|
1050
|
-
export const
|
|
1050
|
+
export const BlendModeOptions: {
|
|
1051
1051
|
label: string;
|
|
1052
1052
|
value: number;
|
|
1053
1053
|
}[];
|
|
1054
1054
|
/**
|
|
1055
1055
|
* Used to populated the alphaMode dropdown in our various tools (Node Editor, Inspector, etc.)
|
|
1056
1056
|
*/
|
|
1057
|
-
export const
|
|
1057
|
+
export const AlphaModeOptions: {
|
|
1058
1058
|
label: string;
|
|
1059
1059
|
value: number;
|
|
1060
1060
|
}[];
|
|
@@ -2527,7 +2527,7 @@ interface ITextureButtonLineState {
|
|
|
2527
2527
|
isOpen: boolean;
|
|
2528
2528
|
}
|
|
2529
2529
|
export class TextureButtonLine extends React.Component<ITextureButtonLineProps, ITextureButtonLineState> {
|
|
2530
|
-
private static
|
|
2530
|
+
private static _IdGenerator;
|
|
2531
2531
|
private _id;
|
|
2532
2532
|
private _uploadInputRef;
|
|
2533
2533
|
constructor(props: ITextureButtonLineProps);
|
|
@@ -3066,7 +3066,7 @@ interface IFileMultipleButtonLineComponentProps {
|
|
|
3066
3066
|
iconLabel?: string;
|
|
3067
3067
|
}
|
|
3068
3068
|
export class FileMultipleButtonLineComponent extends React.Component<IFileMultipleButtonLineComponentProps> {
|
|
3069
|
-
private static
|
|
3069
|
+
private static _IdGenerator;
|
|
3070
3070
|
private _id;
|
|
3071
3071
|
private _uploadInputRef;
|
|
3072
3072
|
constructor(props: IFileMultipleButtonLineComponentProps);
|
|
@@ -3086,7 +3086,7 @@ interface IFileButtonLineProps {
|
|
|
3086
3086
|
iconLabel?: string;
|
|
3087
3087
|
}
|
|
3088
3088
|
export class FileButtonLine extends React.Component<IFileButtonLineProps> {
|
|
3089
|
-
private static
|
|
3089
|
+
private static _IdGenerator;
|
|
3090
3090
|
private _id;
|
|
3091
3091
|
private _uploadInputRef;
|
|
3092
3092
|
constructor(props: IFileButtonLineProps);
|
|
@@ -3696,7 +3696,7 @@ export interface IFileButtonLineComponentProps {
|
|
|
3696
3696
|
iconLabel?: string;
|
|
3697
3697
|
}
|
|
3698
3698
|
export class FileButtonLineComponent extends React.Component<IFileButtonLineComponentProps> {
|
|
3699
|
-
private static
|
|
3699
|
+
private static _IdGenerator;
|
|
3700
3700
|
private _id;
|
|
3701
3701
|
private _uploadInputRef;
|
|
3702
3702
|
constructor(props: IFileButtonLineComponentProps);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@babylonjs/node-render-graph-editor",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.6.1",
|
|
4
4
|
"main": "dist/babylon.nodeRenderGraphEditor.max.js",
|
|
5
5
|
"module": "dist/babylon.nodeRenderGraphEditor.max.js",
|
|
6
6
|
"esnext": "dist/babylon.nodeRenderGraphEditor.max.js",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"@types/react-dom": ">=16.0.9"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@babylonjs/core": "^8.
|
|
26
|
+
"@babylonjs/core": "^8.6.1",
|
|
27
27
|
"react": "^18.2.0",
|
|
28
28
|
"react-dom": "^18.2.0"
|
|
29
29
|
},
|