babylonjs-node-render-graph-editor 7.37.2 → 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.
|
@@ -2217,8 +2217,8 @@ declare module BABYLON.NodeRenderGraphEditor {
|
|
|
2217
2217
|
declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
2218
2218
|
interface IVector3LineComponentProps {
|
|
2219
2219
|
label: string;
|
|
2220
|
-
target
|
|
2221
|
-
propertyName
|
|
2220
|
+
target?: any;
|
|
2221
|
+
propertyName?: string;
|
|
2222
2222
|
step?: number;
|
|
2223
2223
|
onChange?: (newvalue: BABYLON.Vector3) => void;
|
|
2224
2224
|
useEuler?: boolean;
|
|
@@ -2227,6 +2227,8 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
|
2227
2227
|
icon?: string;
|
|
2228
2228
|
iconLabel?: string;
|
|
2229
2229
|
lockObject: BABYLON.NodeRenderGraphEditor.SharedUIComponents.LockObject;
|
|
2230
|
+
directValue?: BABYLON.Vector3;
|
|
2231
|
+
additionalCommands?: JSX.Element[];
|
|
2230
2232
|
}
|
|
2231
2233
|
export class Vector3LineComponent extends React.Component<IVector3LineComponentProps, {
|
|
2232
2234
|
isExpanded: boolean;
|
|
@@ -2337,8 +2337,8 @@ import { PropertyChangedEvent } from "babylonjs-node-render-graph-editor/propert
|
|
|
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;
|
|
@@ -6534,8 +6536,8 @@ declare module BABYLON.NodeRenderGraphEditor {
|
|
|
6534
6536
|
declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
6535
6537
|
interface IVector3LineComponentProps {
|
|
6536
6538
|
label: string;
|
|
6537
|
-
target
|
|
6538
|
-
propertyName
|
|
6539
|
+
target?: any;
|
|
6540
|
+
propertyName?: string;
|
|
6539
6541
|
step?: number;
|
|
6540
6542
|
onChange?: (newvalue: BABYLON.Vector3) => void;
|
|
6541
6543
|
useEuler?: boolean;
|
|
@@ -6544,6 +6546,8 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
|
6544
6546
|
icon?: string;
|
|
6545
6547
|
iconLabel?: string;
|
|
6546
6548
|
lockObject: BABYLON.NodeRenderGraphEditor.SharedUIComponents.LockObject;
|
|
6549
|
+
directValue?: BABYLON.Vector3;
|
|
6550
|
+
additionalCommands?: JSX.Element[];
|
|
6547
6551
|
}
|
|
6548
6552
|
export class Vector3LineComponent extends React.Component<IVector3LineComponentProps, {
|
|
6549
6553
|
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": "babylon.nodeRenderGraphEditor.js",
|
|
5
5
|
"types": "babylon.nodeRenderGraphEditor.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",
|