babylonjs-node-render-graph-editor 8.4.2 → 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.
|
@@ -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);
|
|
@@ -5034,7 +5034,7 @@ declare module BABYLON.NodeRenderGraphEditor {
|
|
|
5034
5034
|
private _prepareLights;
|
|
5035
5035
|
private _createNodeRenderGraph;
|
|
5036
5036
|
private _getMesh;
|
|
5037
|
-
private
|
|
5037
|
+
private _buildGraphAsync;
|
|
5038
5038
|
private _frameCamera;
|
|
5039
5039
|
private _prepareBackgroundHDR;
|
|
5040
5040
|
private _prepareScene;
|
|
@@ -5264,7 +5264,7 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
|
5264
5264
|
/**
|
|
5265
5265
|
* Used by both particleSystem and alphaBlendModes
|
|
5266
5266
|
*/
|
|
5267
|
-
export var
|
|
5267
|
+
export var CommonBlendModes: {
|
|
5268
5268
|
label: string;
|
|
5269
5269
|
value: number;
|
|
5270
5270
|
}[];
|
|
@@ -5273,14 +5273,14 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
|
5273
5273
|
* The below ParticleSystem consts were defined before new Engine alpha blend modes were added, so we have to reference
|
|
5274
5274
|
* the ParticleSystem.FOO consts explicitly (as the underlying var values are different - they get mapped to engine consts within baseParticleSystem.ts)
|
|
5275
5275
|
*/
|
|
5276
|
-
export var
|
|
5276
|
+
export var BlendModeOptions: {
|
|
5277
5277
|
label: string;
|
|
5278
5278
|
value: number;
|
|
5279
5279
|
}[];
|
|
5280
5280
|
/**
|
|
5281
5281
|
* Used to populated the alphaMode dropdown in our various tools (Node Editor, Inspector, etc.)
|
|
5282
5282
|
*/
|
|
5283
|
-
export var
|
|
5283
|
+
export var AlphaModeOptions: {
|
|
5284
5284
|
label: string;
|
|
5285
5285
|
value: number;
|
|
5286
5286
|
}[];
|
|
@@ -6821,7 +6821,7 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
|
6821
6821
|
isOpen: boolean;
|
|
6822
6822
|
}
|
|
6823
6823
|
export class TextureButtonLine extends React.Component<ITextureButtonLineProps, ITextureButtonLineState> {
|
|
6824
|
-
private static
|
|
6824
|
+
private static _IdGenerator;
|
|
6825
6825
|
private _id;
|
|
6826
6826
|
private _uploadInputRef;
|
|
6827
6827
|
constructor(props: ITextureButtonLineProps);
|
|
@@ -7420,7 +7420,7 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
|
7420
7420
|
iconLabel?: string;
|
|
7421
7421
|
}
|
|
7422
7422
|
export class FileMultipleButtonLineComponent extends React.Component<IFileMultipleButtonLineComponentProps> {
|
|
7423
|
-
private static
|
|
7423
|
+
private static _IdGenerator;
|
|
7424
7424
|
private _id;
|
|
7425
7425
|
private _uploadInputRef;
|
|
7426
7426
|
constructor(props: IFileMultipleButtonLineComponentProps);
|
|
@@ -7444,7 +7444,7 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
|
7444
7444
|
iconLabel?: string;
|
|
7445
7445
|
}
|
|
7446
7446
|
export class FileButtonLine extends React.Component<IFileButtonLineProps> {
|
|
7447
|
-
private static
|
|
7447
|
+
private static _IdGenerator;
|
|
7448
7448
|
private _id;
|
|
7449
7449
|
private _uploadInputRef;
|
|
7450
7450
|
constructor(props: IFileButtonLineProps);
|
|
@@ -8180,7 +8180,7 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
|
8180
8180
|
iconLabel?: string;
|
|
8181
8181
|
}
|
|
8182
8182
|
export class FileButtonLineComponent extends React.Component<IFileButtonLineComponentProps> {
|
|
8183
|
-
private static
|
|
8183
|
+
private static _IdGenerator;
|
|
8184
8184
|
private _id;
|
|
8185
8185
|
private _uploadInputRef;
|
|
8186
8186
|
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.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.
|
|
17
|
+
"babylonjs": "^8.6.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@dev/build-tools": "1.0.0",
|