babylonjs-node-geometry-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.
|
@@ -873,7 +873,7 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
873
873
|
/**
|
|
874
874
|
* Used by both particleSystem and alphaBlendModes
|
|
875
875
|
*/
|
|
876
|
-
export var
|
|
876
|
+
export var CommonBlendModes: {
|
|
877
877
|
label: string;
|
|
878
878
|
value: number;
|
|
879
879
|
}[];
|
|
@@ -882,14 +882,14 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
882
882
|
* The below ParticleSystem consts were defined before new Engine alpha blend modes were added, so we have to reference
|
|
883
883
|
* the ParticleSystem.FOO consts explicitly (as the underlying var values are different - they get mapped to engine consts within baseParticleSystem.ts)
|
|
884
884
|
*/
|
|
885
|
-
export var
|
|
885
|
+
export var BlendModeOptions: {
|
|
886
886
|
label: string;
|
|
887
887
|
value: number;
|
|
888
888
|
}[];
|
|
889
889
|
/**
|
|
890
890
|
* Used to populated the alphaMode dropdown in our various tools (Node Editor, Inspector, etc.)
|
|
891
891
|
*/
|
|
892
|
-
export var
|
|
892
|
+
export var AlphaModeOptions: {
|
|
893
893
|
label: string;
|
|
894
894
|
value: number;
|
|
895
895
|
}[];
|
|
@@ -2430,7 +2430,7 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
2430
2430
|
isOpen: boolean;
|
|
2431
2431
|
}
|
|
2432
2432
|
export class TextureButtonLine extends React.Component<ITextureButtonLineProps, ITextureButtonLineState> {
|
|
2433
|
-
private static
|
|
2433
|
+
private static _IdGenerator;
|
|
2434
2434
|
private _id;
|
|
2435
2435
|
private _uploadInputRef;
|
|
2436
2436
|
constructor(props: ITextureButtonLineProps);
|
|
@@ -3029,7 +3029,7 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
3029
3029
|
iconLabel?: string;
|
|
3030
3030
|
}
|
|
3031
3031
|
export class FileMultipleButtonLineComponent extends React.Component<IFileMultipleButtonLineComponentProps> {
|
|
3032
|
-
private static
|
|
3032
|
+
private static _IdGenerator;
|
|
3033
3033
|
private _id;
|
|
3034
3034
|
private _uploadInputRef;
|
|
3035
3035
|
constructor(props: IFileMultipleButtonLineComponentProps);
|
|
@@ -3053,7 +3053,7 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
3053
3053
|
iconLabel?: string;
|
|
3054
3054
|
}
|
|
3055
3055
|
export class FileButtonLine extends React.Component<IFileButtonLineProps> {
|
|
3056
|
-
private static
|
|
3056
|
+
private static _IdGenerator;
|
|
3057
3057
|
private _id;
|
|
3058
3058
|
private _uploadInputRef;
|
|
3059
3059
|
constructor(props: IFileButtonLineProps);
|
|
@@ -3789,7 +3789,7 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
3789
3789
|
iconLabel?: string;
|
|
3790
3790
|
}
|
|
3791
3791
|
export class FileButtonLineComponent extends React.Component<IFileButtonLineComponentProps> {
|
|
3792
|
-
private static
|
|
3792
|
+
private static _IdGenerator;
|
|
3793
3793
|
private _id;
|
|
3794
3794
|
private _uploadInputRef;
|
|
3795
3795
|
constructor(props: IFileButtonLineComponentProps);
|