babylonjs-node-render-graph-editor 7.21.4 → 7.21.5
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.
|
@@ -118,7 +118,6 @@ declare module BABYLON.NodeRenderGraphEditor {
|
|
|
118
118
|
onReOrganizedRequiredObservable: BABYLON.Observable<void>;
|
|
119
119
|
onLogRequiredObservable: BABYLON.Observable<LogEntry>;
|
|
120
120
|
onIsLoadingChanged: BABYLON.Observable<boolean>;
|
|
121
|
-
onPreviewCommandActivated: BABYLON.Observable<boolean>;
|
|
122
121
|
onLightUpdated: BABYLON.Observable<void>;
|
|
123
122
|
onFrame: BABYLON.Observable<void>;
|
|
124
123
|
onAnimationCommandActivated: BABYLON.Observable<void>;
|
|
@@ -439,7 +438,6 @@ declare module BABYLON.NodeRenderGraphEditor {
|
|
|
439
438
|
}
|
|
440
439
|
export class GenericPropertyTabComponent extends React.Component<BABYLON.NodeRenderGraphEditor.SharedUIComponents.IPropertyComponentProps> {
|
|
441
440
|
constructor(props: BABYLON.NodeRenderGraphEditor.SharedUIComponents.IPropertyComponentProps);
|
|
442
|
-
forceRebuild(propertyName: string, notifiers?: IEditablePropertyOption["notifiers"]): void;
|
|
443
441
|
render(): import("react/jsx-runtime").JSX.Element;
|
|
444
442
|
}
|
|
445
443
|
|
|
@@ -1168,7 +1166,7 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
|
1168
1166
|
onFrameCreatedObservable: BABYLON.Observable<BABYLON.NodeRenderGraphEditor.SharedUIComponents.GraphFrame>;
|
|
1169
1167
|
onUpdateRequiredObservable: BABYLON.Observable<any>;
|
|
1170
1168
|
onGraphNodeRemovalObservable: BABYLON.Observable<BABYLON.NodeRenderGraphEditor.SharedUIComponents.GraphNode>;
|
|
1171
|
-
onSelectionBoxMoved: BABYLON.Observable<
|
|
1169
|
+
onSelectionBoxMoved: BABYLON.Observable<ClientRect | DOMRect>;
|
|
1172
1170
|
onCandidateLinkMoved: BABYLON.Observable<BABYLON.Nullable<BABYLON.Vector2>>;
|
|
1173
1171
|
onCandidatePortSelectedObservable: BABYLON.Observable<BABYLON.Nullable<BABYLON.NodeRenderGraphEditor.SharedUIComponents.FrameNodePort | BABYLON.NodeRenderGraphEditor.SharedUIComponents.NodePort>>;
|
|
1174
1172
|
onNewNodeCreatedObservable: BABYLON.Observable<BABYLON.NodeRenderGraphEditor.SharedUIComponents.GraphNode>;
|
|
@@ -1188,6 +1186,7 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
|
1188
1186
|
data: any;
|
|
1189
1187
|
active: boolean;
|
|
1190
1188
|
}>;
|
|
1189
|
+
onPreviewCommandActivated: BABYLON.Observable<boolean>;
|
|
1191
1190
|
exportData: (data: any, frame?: BABYLON.Nullable<BABYLON.NodeRenderGraphEditor.SharedUIComponents.GraphFrame>) => string;
|
|
1192
1191
|
isElbowConnectionAllowed: (nodeA: BABYLON.NodeRenderGraphEditor.SharedUIComponents.FrameNodePort | BABYLON.NodeRenderGraphEditor.SharedUIComponents.NodePort, nodeB: BABYLON.NodeRenderGraphEditor.SharedUIComponents.FrameNodePort | BABYLON.NodeRenderGraphEditor.SharedUIComponents.NodePort) => boolean;
|
|
1193
1192
|
isDebugConnectionAllowed: (nodeA: BABYLON.NodeRenderGraphEditor.SharedUIComponents.FrameNodePort | BABYLON.NodeRenderGraphEditor.SharedUIComponents.NodePort, nodeB: BABYLON.NodeRenderGraphEditor.SharedUIComponents.FrameNodePort | BABYLON.NodeRenderGraphEditor.SharedUIComponents.NodePort) => boolean;
|
|
@@ -1196,6 +1195,7 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
|
1196
1195
|
getEditorDataMap: () => {
|
|
1197
1196
|
[key: number]: number;
|
|
1198
1197
|
};
|
|
1198
|
+
getScene?: () => BABYLON.Scene;
|
|
1199
1199
|
createDefaultInputData: (rootData: any, portData: BABYLON.NodeRenderGraphEditor.SharedUIComponents.IPortData, nodeContainer: BABYLON.NodeRenderGraphEditor.SharedUIComponents.INodeContainer) => BABYLON.Nullable<{
|
|
1200
1200
|
data: BABYLON.NodeRenderGraphEditor.SharedUIComponents.INodeData;
|
|
1201
1201
|
name: string;
|
|
@@ -1351,6 +1351,7 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
|
1351
1351
|
private _headerIconImg;
|
|
1352
1352
|
private _header;
|
|
1353
1353
|
private _connections;
|
|
1354
|
+
private _optionsContainer;
|
|
1354
1355
|
private _inputsContainer;
|
|
1355
1356
|
private _outputsContainer;
|
|
1356
1357
|
private _content;
|
|
@@ -1377,6 +1378,7 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
|
1377
1378
|
private _displayManager;
|
|
1378
1379
|
private _isVisible;
|
|
1379
1380
|
private _enclosingFrameId;
|
|
1381
|
+
private _visualPropertiesRefresh;
|
|
1380
1382
|
addClassToVisual(className: string): void;
|
|
1381
1383
|
removeClassFromVisual(className: string): void;
|
|
1382
1384
|
get isVisible(): boolean;
|
|
@@ -1415,6 +1417,7 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
|
1415
1417
|
private _onUp;
|
|
1416
1418
|
private _onMove;
|
|
1417
1419
|
renderProperties(): BABYLON.Nullable<JSX.Element>;
|
|
1420
|
+
private _forceRebuild;
|
|
1418
1421
|
appendVisual(root: HTMLDivElement, owner: BABYLON.NodeRenderGraphEditor.SharedUIComponents.GraphCanvasComponent): void;
|
|
1419
1422
|
dispose(): void;
|
|
1420
1423
|
}
|
|
@@ -1741,6 +1744,23 @@ declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
|
1741
1744
|
|
|
1742
1745
|
|
|
1743
1746
|
|
|
1747
|
+
}
|
|
1748
|
+
declare module BABYLON.NodeRenderGraphEditor {
|
|
1749
|
+
|
|
1750
|
+
|
|
1751
|
+
}
|
|
1752
|
+
declare module BABYLON.NodeRenderGraphEditor.SharedUIComponents {
|
|
1753
|
+
/**
|
|
1754
|
+
* Function used to force a rebuild of the node system
|
|
1755
|
+
* @param source source object
|
|
1756
|
+
* @param stateManager defines the state manager to use
|
|
1757
|
+
* @param propertyName name of the property that has been changed
|
|
1758
|
+
* @param notifiers list of notifiers to use
|
|
1759
|
+
*/
|
|
1760
|
+
export function ForceRebuild(source: any, stateManager: BABYLON.NodeRenderGraphEditor.SharedUIComponents.StateManager, propertyName: string, notifiers?: BABYLON.IEditablePropertyOption["notifiers"]): void;
|
|
1761
|
+
|
|
1762
|
+
|
|
1763
|
+
|
|
1744
1764
|
}
|
|
1745
1765
|
declare module BABYLON.NodeRenderGraphEditor {
|
|
1746
1766
|
|