@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);
|
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": "dist/babylon.nodeGeometryEditor.max.js",
|
|
5
5
|
"module": "dist/babylon.nodeGeometryEditor.max.js",
|
|
6
6
|
"esnext": "dist/babylon.nodeGeometryEditor.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
|
},
|