@babylonjs/inspector 7.48.2 → 7.49.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.
|
@@ -6151,8 +6151,8 @@ import { PropertyChangedEvent } from "@babylonjs/inspector/propertyChangedEvent"
|
|
|
6151
6151
|
import { LockObject } from "@babylonjs/inspector/tabs/propertyGrids/lockObject";
|
|
6152
6152
|
interface IVector3LineComponentProps {
|
|
6153
6153
|
label: string;
|
|
6154
|
-
target
|
|
6155
|
-
propertyName
|
|
6154
|
+
target?: any;
|
|
6155
|
+
propertyName?: string;
|
|
6156
6156
|
step?: number;
|
|
6157
6157
|
onChange?: (newvalue: Vector3) => void;
|
|
6158
6158
|
useEuler?: boolean;
|
|
@@ -6161,6 +6161,8 @@ interface IVector3LineComponentProps {
|
|
|
6161
6161
|
icon?: string;
|
|
6162
6162
|
iconLabel?: string;
|
|
6163
6163
|
lockObject: LockObject;
|
|
6164
|
+
directValue?: Vector3;
|
|
6165
|
+
additionalCommands?: JSX.Element[];
|
|
6164
6166
|
}
|
|
6165
6167
|
export class Vector3LineComponent extends React.Component<IVector3LineComponentProps, {
|
|
6166
6168
|
isExpanded: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@babylonjs/inspector",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.49.0",
|
|
4
4
|
"module": "dist/babylon.inspector.bundle.max.js",
|
|
5
5
|
"main": "dist/babylon.inspector.bundle.max.js",
|
|
6
6
|
"typings": "dist/babylon.inspector.module.d.ts",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@types/react-dom": ">=16.0.9"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@babylonjs/core": "^7.
|
|
36
|
-
"@babylonjs/gui": "^7.
|
|
37
|
-
"@babylonjs/gui-editor": "^7.
|
|
38
|
-
"@babylonjs/loaders": "^7.
|
|
39
|
-
"@babylonjs/materials": "^7.
|
|
40
|
-
"@babylonjs/serializers": "^7.
|
|
35
|
+
"@babylonjs/core": "^7.49.0",
|
|
36
|
+
"@babylonjs/gui": "^7.49.0",
|
|
37
|
+
"@babylonjs/gui-editor": "^7.49.0",
|
|
38
|
+
"@babylonjs/loaders": "^7.49.0",
|
|
39
|
+
"@babylonjs/materials": "^7.49.0",
|
|
40
|
+
"@babylonjs/serializers": "^7.49.0",
|
|
41
41
|
"@lts/gui": "1.0.0",
|
|
42
42
|
"react": "^17.0.2",
|
|
43
43
|
"react-dom": "^17.0.2"
|