@babylonjs/node-render-graph-editor 7.37.3 → 7.38.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.
|
@@ -2337,8 +2337,8 @@ import { PropertyChangedEvent } from "@babylonjs/node-render-graph-editor/proper
|
|
|
2337
2337
|
import { LockObject } from "@babylonjs/node-render-graph-editor/tabs/propertyGrids/lockObject";
|
|
2338
2338
|
interface IVector3LineComponentProps {
|
|
2339
2339
|
label: string;
|
|
2340
|
-
target
|
|
2341
|
-
propertyName
|
|
2340
|
+
target?: any;
|
|
2341
|
+
propertyName?: string;
|
|
2342
2342
|
step?: number;
|
|
2343
2343
|
onChange?: (newvalue: Vector3) => void;
|
|
2344
2344
|
useEuler?: boolean;
|
|
@@ -2347,6 +2347,8 @@ interface IVector3LineComponentProps {
|
|
|
2347
2347
|
icon?: string;
|
|
2348
2348
|
iconLabel?: string;
|
|
2349
2349
|
lockObject: LockObject;
|
|
2350
|
+
directValue?: Vector3;
|
|
2351
|
+
additionalCommands?: JSX.Element[];
|
|
2350
2352
|
}
|
|
2351
2353
|
export class Vector3LineComponent extends React.Component<IVector3LineComponentProps, {
|
|
2352
2354
|
isExpanded: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@babylonjs/node-render-graph-editor",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.38.0",
|
|
4
4
|
"main": "dist/babylon.nodeRenderGraphEditor.max.js",
|
|
5
5
|
"module": "dist/babylon.nodeRenderGraphEditor.max.js",
|
|
6
6
|
"esnext": "dist/babylon.nodeRenderGraphEditor.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.49.0",
|
|
27
27
|
"react": "^17.0.2",
|
|
28
28
|
"react-dom": "^17.0.2"
|
|
29
29
|
},
|