@babylonjs/node-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.
@@ -2796,8 +2796,8 @@ import { PropertyChangedEvent } from "@babylonjs/node-editor/propertyChangedEven
|
|
2796
2796
|
import { LockObject } from "@babylonjs/node-editor/tabs/propertyGrids/lockObject";
|
2797
2797
|
interface IVector3LineComponentProps {
|
2798
2798
|
label: string;
|
2799
|
-
target
|
2800
|
-
propertyName
|
2799
|
+
target?: any;
|
2800
|
+
propertyName?: string;
|
2801
2801
|
step?: number;
|
2802
2802
|
onChange?: (newvalue: Vector3) => void;
|
2803
2803
|
useEuler?: boolean;
|
@@ -2806,6 +2806,8 @@ interface IVector3LineComponentProps {
|
|
2806
2806
|
icon?: string;
|
2807
2807
|
iconLabel?: string;
|
2808
2808
|
lockObject: LockObject;
|
2809
|
+
directValue?: Vector3;
|
2810
|
+
additionalCommands?: JSX.Element[];
|
2809
2811
|
}
|
2810
2812
|
export class Vector3LineComponent extends React.Component<IVector3LineComponentProps, {
|
2811
2813
|
isExpanded: boolean;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@babylonjs/node-editor",
|
3
|
-
"version": "7.
|
3
|
+
"version": "7.50.0",
|
4
4
|
"main": "dist/babylon.nodeEditor.max.js",
|
5
5
|
"module": "dist/babylon.nodeEditor.max.js",
|
6
6
|
"esnext": "dist/babylon.nodeEditor.max.js",
|
@@ -23,7 +23,7 @@
|
|
23
23
|
"@types/react-dom": ">=16.0.9"
|
24
24
|
},
|
25
25
|
"devDependencies": {
|
26
|
-
"@babylonjs/core": "^7.
|
26
|
+
"@babylonjs/core": "^7.50.0",
|
27
27
|
"react": "^17.0.2",
|
28
28
|
"react-dom": "^17.0.2"
|
29
29
|
},
|