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.
|
@@ -528,6 +528,16 @@ declare module BABYLON.NodeRenderGraphEditor {
|
|
|
528
528
|
}
|
|
529
529
|
|
|
530
530
|
|
|
531
|
+
interface ITextureMemoryUsagePropertyTabComponentProps {
|
|
532
|
+
globalState: GlobalState;
|
|
533
|
+
}
|
|
534
|
+
export class TextureMemoryUsagePropertyTabComponent extends React.Component<ITextureMemoryUsagePropertyTabComponentProps> {
|
|
535
|
+
constructor(props: ITextureMemoryUsagePropertyTabComponentProps);
|
|
536
|
+
private _formatMemorySize;
|
|
537
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
|
|
531
541
|
interface IPropertyTabComponentProps {
|
|
532
542
|
globalState: GlobalState;
|
|
533
543
|
lockObject: BABYLON.NodeRenderGraphEditor.SharedUIComponents.LockObject;
|
|
@@ -554,19 +564,6 @@ declare module BABYLON.NodeRenderGraphEditor {
|
|
|
554
564
|
}
|
|
555
565
|
|
|
556
566
|
|
|
557
|
-
interface IInputsPropertyTabComponentProps {
|
|
558
|
-
globalState: GlobalState;
|
|
559
|
-
inputs: BABYLON.NodeRenderGraphInputBlock[];
|
|
560
|
-
lockObject: BABYLON.NodeRenderGraphEditor.SharedUIComponents.LockObject;
|
|
561
|
-
}
|
|
562
|
-
export class InputsPropertyTabComponent extends React.Component<IInputsPropertyTabComponentProps> {
|
|
563
|
-
constructor(props: IInputsPropertyTabComponentProps);
|
|
564
|
-
processInputBlockUpdate(): void;
|
|
565
|
-
renderInputBlock(block: BABYLON.NodeRenderGraphInputBlock): import("react/jsx-runtime").JSX.Element | null;
|
|
566
|
-
render(): import("react/jsx-runtime").JSX.Element;
|
|
567
|
-
}
|
|
568
|
-
|
|
569
|
-
|
|
570
567
|
export enum PreviewType {
|
|
571
568
|
Sphere = 0,
|
|
572
569
|
Box = 1,
|
|
@@ -1387,6 +1384,8 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
|
1387
1384
|
data: BABYLON.NodeRenderGraphEditor.SharedUIComponents.INodeData;
|
|
1388
1385
|
name: string;
|
|
1389
1386
|
}>;
|
|
1387
|
+
private _isRebuildQueued;
|
|
1388
|
+
queueRebuildCommand(): void;
|
|
1390
1389
|
}
|
|
1391
1390
|
|
|
1392
1391
|
|
|
@@ -2123,6 +2122,9 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
|
2123
2122
|
outputs: BABYLON.NodeRenderGraphEditor.SharedUIComponents.IPortData[];
|
|
2124
2123
|
invisibleEndpoints?: BABYLON.Nullable<any[]>;
|
|
2125
2124
|
isConnectedToOutput?: () => boolean;
|
|
2125
|
+
isActive?: boolean;
|
|
2126
|
+
setIsActive?: (value: boolean) => void;
|
|
2127
|
+
canBeActivated?: boolean;
|
|
2126
2128
|
}
|
|
2127
2129
|
|
|
2128
2130
|
|