babylonjs-node-geometry-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.
|
@@ -1133,7 +1133,7 @@ declare module "babylonjs-node-geometry-editor/constToOptionsMaps" {
|
|
|
1133
1133
|
/**
|
|
1134
1134
|
* Used by both particleSystem and alphaBlendModes
|
|
1135
1135
|
*/
|
|
1136
|
-
export const
|
|
1136
|
+
export const CommonBlendModes: {
|
|
1137
1137
|
label: string;
|
|
1138
1138
|
value: number;
|
|
1139
1139
|
}[];
|
|
@@ -1142,14 +1142,14 @@ export const commonBlendModes: {
|
|
|
1142
1142
|
* The below ParticleSystem consts were defined before new Engine alpha blend modes were added, so we have to reference
|
|
1143
1143
|
* the ParticleSystem.FOO consts explicitly (as the underlying const values are different - they get mapped to engine consts within baseParticleSystem.ts)
|
|
1144
1144
|
*/
|
|
1145
|
-
export const
|
|
1145
|
+
export const BlendModeOptions: {
|
|
1146
1146
|
label: string;
|
|
1147
1147
|
value: number;
|
|
1148
1148
|
}[];
|
|
1149
1149
|
/**
|
|
1150
1150
|
* Used to populated the alphaMode dropdown in our various tools (Node Editor, Inspector, etc.)
|
|
1151
1151
|
*/
|
|
1152
|
-
export const
|
|
1152
|
+
export const AlphaModeOptions: {
|
|
1153
1153
|
label: string;
|
|
1154
1154
|
value: number;
|
|
1155
1155
|
}[];
|
|
@@ -2622,7 +2622,7 @@ interface ITextureButtonLineState {
|
|
|
2622
2622
|
isOpen: boolean;
|
|
2623
2623
|
}
|
|
2624
2624
|
export class TextureButtonLine extends React.Component<ITextureButtonLineProps, ITextureButtonLineState> {
|
|
2625
|
-
private static
|
|
2625
|
+
private static _IdGenerator;
|
|
2626
2626
|
private _id;
|
|
2627
2627
|
private _uploadInputRef;
|
|
2628
2628
|
constructor(props: ITextureButtonLineProps);
|
|
@@ -3161,7 +3161,7 @@ interface IFileMultipleButtonLineComponentProps {
|
|
|
3161
3161
|
iconLabel?: string;
|
|
3162
3162
|
}
|
|
3163
3163
|
export class FileMultipleButtonLineComponent extends React.Component<IFileMultipleButtonLineComponentProps> {
|
|
3164
|
-
private static
|
|
3164
|
+
private static _IdGenerator;
|
|
3165
3165
|
private _id;
|
|
3166
3166
|
private _uploadInputRef;
|
|
3167
3167
|
constructor(props: IFileMultipleButtonLineComponentProps);
|
|
@@ -3181,7 +3181,7 @@ interface IFileButtonLineProps {
|
|
|
3181
3181
|
iconLabel?: string;
|
|
3182
3182
|
}
|
|
3183
3183
|
export class FileButtonLine extends React.Component<IFileButtonLineProps> {
|
|
3184
|
-
private static
|
|
3184
|
+
private static _IdGenerator;
|
|
3185
3185
|
private _id;
|
|
3186
3186
|
private _uploadInputRef;
|
|
3187
3187
|
constructor(props: IFileButtonLineProps);
|
|
@@ -3791,7 +3791,7 @@ export interface IFileButtonLineComponentProps {
|
|
|
3791
3791
|
iconLabel?: string;
|
|
3792
3792
|
}
|
|
3793
3793
|
export class FileButtonLineComponent extends React.Component<IFileButtonLineComponentProps> {
|
|
3794
|
-
private static
|
|
3794
|
+
private static _IdGenerator;
|
|
3795
3795
|
private _id;
|
|
3796
3796
|
private _uploadInputRef;
|
|
3797
3797
|
constructor(props: IFileButtonLineComponentProps);
|
|
@@ -5375,7 +5375,7 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
5375
5375
|
/**
|
|
5376
5376
|
* Used by both particleSystem and alphaBlendModes
|
|
5377
5377
|
*/
|
|
5378
|
-
export var
|
|
5378
|
+
export var CommonBlendModes: {
|
|
5379
5379
|
label: string;
|
|
5380
5380
|
value: number;
|
|
5381
5381
|
}[];
|
|
@@ -5384,14 +5384,14 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
5384
5384
|
* The below ParticleSystem consts were defined before new Engine alpha blend modes were added, so we have to reference
|
|
5385
5385
|
* the ParticleSystem.FOO consts explicitly (as the underlying var values are different - they get mapped to engine consts within baseParticleSystem.ts)
|
|
5386
5386
|
*/
|
|
5387
|
-
export var
|
|
5387
|
+
export var BlendModeOptions: {
|
|
5388
5388
|
label: string;
|
|
5389
5389
|
value: number;
|
|
5390
5390
|
}[];
|
|
5391
5391
|
/**
|
|
5392
5392
|
* Used to populated the alphaMode dropdown in our various tools (Node Editor, Inspector, etc.)
|
|
5393
5393
|
*/
|
|
5394
|
-
export var
|
|
5394
|
+
export var AlphaModeOptions: {
|
|
5395
5395
|
label: string;
|
|
5396
5396
|
value: number;
|
|
5397
5397
|
}[];
|
|
@@ -6932,7 +6932,7 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
6932
6932
|
isOpen: boolean;
|
|
6933
6933
|
}
|
|
6934
6934
|
export class TextureButtonLine extends React.Component<ITextureButtonLineProps, ITextureButtonLineState> {
|
|
6935
|
-
private static
|
|
6935
|
+
private static _IdGenerator;
|
|
6936
6936
|
private _id;
|
|
6937
6937
|
private _uploadInputRef;
|
|
6938
6938
|
constructor(props: ITextureButtonLineProps);
|
|
@@ -7531,7 +7531,7 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
7531
7531
|
iconLabel?: string;
|
|
7532
7532
|
}
|
|
7533
7533
|
export class FileMultipleButtonLineComponent extends React.Component<IFileMultipleButtonLineComponentProps> {
|
|
7534
|
-
private static
|
|
7534
|
+
private static _IdGenerator;
|
|
7535
7535
|
private _id;
|
|
7536
7536
|
private _uploadInputRef;
|
|
7537
7537
|
constructor(props: IFileMultipleButtonLineComponentProps);
|
|
@@ -7555,7 +7555,7 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
7555
7555
|
iconLabel?: string;
|
|
7556
7556
|
}
|
|
7557
7557
|
export class FileButtonLine extends React.Component<IFileButtonLineProps> {
|
|
7558
|
-
private static
|
|
7558
|
+
private static _IdGenerator;
|
|
7559
7559
|
private _id;
|
|
7560
7560
|
private _uploadInputRef;
|
|
7561
7561
|
constructor(props: IFileButtonLineProps);
|
|
@@ -8291,7 +8291,7 @@ declare module BABYLON.NodeGeometryEditor.SharedUIComponents {
|
|
|
8291
8291
|
iconLabel?: string;
|
|
8292
8292
|
}
|
|
8293
8293
|
export class FileButtonLineComponent extends React.Component<IFileButtonLineComponentProps> {
|
|
8294
|
-
private static
|
|
8294
|
+
private static _IdGenerator;
|
|
8295
8295
|
private _id;
|
|
8296
8296
|
private _uploadInputRef;
|
|
8297
8297
|
constructor(props: IFileButtonLineComponentProps);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-node-geometry-editor",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.6.1",
|
|
4
4
|
"main": "babylon.nodeGeometryEditor.js",
|
|
5
5
|
"types": "babylon.nodeGeometryEditor.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.1"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@dev/build-tools": "1.0.0",
|