@babylonjs/node-render-graph-editor 7.34.0 → 7.35.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.
|
@@ -698,6 +698,21 @@ export class ElbowDisplayManager implements IDisplayManager {
|
|
|
698
698
|
updateFullVisualContent(data: INodeData, visualContent: VisualContentDescription): void;
|
|
699
699
|
}
|
|
700
700
|
|
|
701
|
+
}
|
|
702
|
+
declare module "@babylonjs/node-render-graph-editor/components/propertyTab/textureMemoryUsagePropertyTabComponent" {
|
|
703
|
+
import * as React from "react";
|
|
704
|
+
import { GlobalState } from "@babylonjs/node-render-graph-editor/globalState";
|
|
705
|
+
import "@babylonjs/node-render-graph-editor/components/propertyTab/propertyTab.scss";
|
|
706
|
+
interface ITextureMemoryUsagePropertyTabComponentProps {
|
|
707
|
+
globalState: GlobalState;
|
|
708
|
+
}
|
|
709
|
+
export class TextureMemoryUsagePropertyTabComponent extends React.Component<ITextureMemoryUsagePropertyTabComponentProps> {
|
|
710
|
+
constructor(props: ITextureMemoryUsagePropertyTabComponentProps);
|
|
711
|
+
private _formatMemorySize;
|
|
712
|
+
|
|
713
|
+
}
|
|
714
|
+
export {};
|
|
715
|
+
|
|
701
716
|
}
|
|
702
717
|
declare module "@babylonjs/node-render-graph-editor/components/propertyTab/propertyTabComponent" {
|
|
703
718
|
import * as React from "react";
|
|
@@ -735,26 +750,6 @@ export class PropertyTabComponent extends React.Component<IPropertyTabComponentP
|
|
|
735
750
|
}
|
|
736
751
|
export {};
|
|
737
752
|
|
|
738
|
-
}
|
|
739
|
-
declare module "@babylonjs/node-render-graph-editor/components/propertyTab/inputsPropertyTabComponent" {
|
|
740
|
-
import * as React from "react";
|
|
741
|
-
import { GlobalState } from "@babylonjs/node-render-graph-editor/globalState";
|
|
742
|
-
import "@babylonjs/node-render-graph-editor/components/propertyTab/propertyTab.scss";
|
|
743
|
-
import { LockObject } from "@babylonjs/node-render-graph-editor/tabs/propertyGrids/lockObject";
|
|
744
|
-
import { NodeRenderGraphInputBlock } from "@babylonjs/core/FrameGraph/Node/Blocks/inputBlock";
|
|
745
|
-
interface IInputsPropertyTabComponentProps {
|
|
746
|
-
globalState: GlobalState;
|
|
747
|
-
inputs: NodeRenderGraphInputBlock[];
|
|
748
|
-
lockObject: LockObject;
|
|
749
|
-
}
|
|
750
|
-
export class InputsPropertyTabComponent extends React.Component<IInputsPropertyTabComponentProps> {
|
|
751
|
-
constructor(props: IInputsPropertyTabComponentProps);
|
|
752
|
-
processInputBlockUpdate(): void;
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
}
|
|
756
|
-
export {};
|
|
757
|
-
|
|
758
753
|
}
|
|
759
754
|
declare module "@babylonjs/node-render-graph-editor/components/preview/previewType" {
|
|
760
755
|
export enum PreviewType {
|
|
@@ -1548,6 +1543,8 @@ export class StateManager {
|
|
|
1548
1543
|
data: INodeData;
|
|
1549
1544
|
name: string;
|
|
1550
1545
|
}>;
|
|
1546
|
+
private _isRebuildQueued;
|
|
1547
|
+
queueRebuildCommand(): void;
|
|
1551
1548
|
}
|
|
1552
1549
|
|
|
1553
1550
|
}
|
|
@@ -2252,6 +2249,9 @@ export interface INodeData {
|
|
|
2252
2249
|
outputs: IPortData[];
|
|
2253
2250
|
invisibleEndpoints?: Nullable<any[]>;
|
|
2254
2251
|
isConnectedToOutput?: () => boolean;
|
|
2252
|
+
isActive?: boolean;
|
|
2253
|
+
setIsActive?: (value: boolean) => void;
|
|
2254
|
+
canBeActivated?: boolean;
|
|
2255
2255
|
}
|
|
2256
2256
|
|
|
2257
2257
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@babylonjs/node-render-graph-editor",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.35.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.46.0",
|
|
27
27
|
"react": "^17.0.2",
|
|
28
28
|
"react-dom": "^17.0.2"
|
|
29
29
|
},
|