babylonjs-gui-editor 7.48.3 → 7.50.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.
package/babylon.guiEditor.d.ts
CHANGED
|
@@ -2708,8 +2708,8 @@ declare module BABYLON {
|
|
|
2708
2708
|
declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
2709
2709
|
interface IVector3LineComponentProps {
|
|
2710
2710
|
label: string;
|
|
2711
|
-
target
|
|
2712
|
-
propertyName
|
|
2711
|
+
target?: any;
|
|
2712
|
+
propertyName?: string;
|
|
2713
2713
|
step?: number;
|
|
2714
2714
|
onChange?: (newvalue: Vector3) => void;
|
|
2715
2715
|
useEuler?: boolean;
|
|
@@ -2718,6 +2718,8 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
2718
2718
|
icon?: string;
|
|
2719
2719
|
iconLabel?: string;
|
|
2720
2720
|
lockObject: BABYLON.GuiEditor.SharedUIComponents.LockObject;
|
|
2721
|
+
directValue?: Vector3;
|
|
2722
|
+
additionalCommands?: JSX.Element[];
|
|
2721
2723
|
}
|
|
2722
2724
|
export class Vector3LineComponent extends React.Component<IVector3LineComponentProps, {
|
|
2723
2725
|
isExpanded: boolean;
|
|
@@ -2945,8 +2945,8 @@ import { PropertyChangedEvent } from "babylonjs-gui-editor/propertyChangedEvent"
|
|
|
2945
2945
|
import { LockObject } from "babylonjs-gui-editor/tabs/propertyGrids/lockObject";
|
|
2946
2946
|
interface IVector3LineComponentProps {
|
|
2947
2947
|
label: string;
|
|
2948
|
-
target
|
|
2949
|
-
propertyName
|
|
2948
|
+
target?: any;
|
|
2949
|
+
propertyName?: string;
|
|
2950
2950
|
step?: number;
|
|
2951
2951
|
onChange?: (newvalue: Vector3) => void;
|
|
2952
2952
|
useEuler?: boolean;
|
|
@@ -2955,6 +2955,8 @@ interface IVector3LineComponentProps {
|
|
|
2955
2955
|
icon?: string;
|
|
2956
2956
|
iconLabel?: string;
|
|
2957
2957
|
lockObject: LockObject;
|
|
2958
|
+
directValue?: Vector3;
|
|
2959
|
+
additionalCommands?: JSX.Element[];
|
|
2958
2960
|
}
|
|
2959
2961
|
export class Vector3LineComponent extends React.Component<IVector3LineComponentProps, {
|
|
2960
2962
|
isExpanded: boolean;
|
|
@@ -7633,8 +7635,8 @@ declare module BABYLON {
|
|
|
7633
7635
|
declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
7634
7636
|
interface IVector3LineComponentProps {
|
|
7635
7637
|
label: string;
|
|
7636
|
-
target
|
|
7637
|
-
propertyName
|
|
7638
|
+
target?: any;
|
|
7639
|
+
propertyName?: string;
|
|
7638
7640
|
step?: number;
|
|
7639
7641
|
onChange?: (newvalue: Vector3) => void;
|
|
7640
7642
|
useEuler?: boolean;
|
|
@@ -7643,6 +7645,8 @@ declare module BABYLON.GuiEditor.SharedUIComponents {
|
|
|
7643
7645
|
icon?: string;
|
|
7644
7646
|
iconLabel?: string;
|
|
7645
7647
|
lockObject: BABYLON.GuiEditor.SharedUIComponents.LockObject;
|
|
7648
|
+
directValue?: Vector3;
|
|
7649
|
+
additionalCommands?: JSX.Element[];
|
|
7646
7650
|
}
|
|
7647
7651
|
export class Vector3LineComponent extends React.Component<IVector3LineComponentProps, {
|
|
7648
7652
|
isExpanded: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-gui-editor",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.50.0",
|
|
4
4
|
"main": "babylon.guiEditor.max.js",
|
|
5
5
|
"types": "babylon.guiEditor.module.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"clean": "rimraf dist && rimraf babylon*.* -g"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"babylonjs": "^7.
|
|
18
|
-
"babylonjs-gui": "^7.
|
|
17
|
+
"babylonjs": "^7.50.0",
|
|
18
|
+
"babylonjs-gui": "^7.50.0"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@dev/build-tools": "1.0.0",
|