babylonjs-node-editor 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.
|
@@ -2796,8 +2796,8 @@ import { PropertyChangedEvent } from "babylonjs-node-editor/propertyChangedEvent
|
|
|
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;
|
|
@@ -7263,8 +7265,8 @@ declare module BABYLON.NodeEditor {
|
|
|
7263
7265
|
declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
7264
7266
|
interface IVector3LineComponentProps {
|
|
7265
7267
|
label: string;
|
|
7266
|
-
target
|
|
7267
|
-
propertyName
|
|
7268
|
+
target?: any;
|
|
7269
|
+
propertyName?: string;
|
|
7268
7270
|
step?: number;
|
|
7269
7271
|
onChange?: (newvalue: BABYLON.Vector3) => void;
|
|
7270
7272
|
useEuler?: boolean;
|
|
@@ -7273,6 +7275,8 @@ declare module BABYLON.NodeEditor.SharedUIComponents {
|
|
|
7273
7275
|
icon?: string;
|
|
7274
7276
|
iconLabel?: string;
|
|
7275
7277
|
lockObject: BABYLON.NodeEditor.SharedUIComponents.LockObject;
|
|
7278
|
+
directValue?: BABYLON.Vector3;
|
|
7279
|
+
additionalCommands?: JSX.Element[];
|
|
7276
7280
|
}
|
|
7277
7281
|
export class Vector3LineComponent extends React.Component<IVector3LineComponentProps, {
|
|
7278
7282
|
isExpanded: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-node-editor",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.49.0",
|
|
4
4
|
"main": "babylon.nodeEditor.js",
|
|
5
5
|
"types": "babylon.nodeEditor.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": "^7.
|
|
17
|
+
"babylonjs": "^7.49.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@dev/build-tools": "1.0.0",
|