babylonjs-node-editor 7.47.1 → 7.47.3
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.
- package/babylon.nodeEditor.d.ts +13 -1
- package/babylon.nodeEditor.js +1 -1
- package/babylon.nodeEditor.js.map +1 -1
- package/babylon.nodeEditor.max.js +151 -36
- package/babylon.nodeEditor.module.d.ts +31 -3
- package/package.json +2 -2
package/babylon.nodeEditor.d.ts
CHANGED
|
@@ -141,9 +141,11 @@ declare module BABYLON.NodeEditor {
|
|
|
141
141
|
pointerOverCanvas: boolean;
|
|
142
142
|
filesInput: BABYLON.FilesInput;
|
|
143
143
|
onRefreshPreviewMeshControlComponentRequiredObservable: BABYLON.Observable<void>;
|
|
144
|
-
previewTexture: BABYLON.Nullable<BABYLON.
|
|
144
|
+
previewTexture: BABYLON.Nullable<BABYLON.RenderTargetTexture>;
|
|
145
|
+
pickingTexture: BABYLON.Nullable<BABYLON.RenderTargetTexture>;
|
|
145
146
|
onPreviewSceneAfterRenderObservable: BABYLON.Observable<void>;
|
|
146
147
|
onPreviewUpdatedObservable: BABYLON.Observable<BABYLON.NodeMaterial>;
|
|
148
|
+
debugBlocksToRefresh: BABYLON.NodeMaterialDebugBlock[];
|
|
147
149
|
/** Gets the mode */
|
|
148
150
|
get mode(): BABYLON.NodeMaterialModes;
|
|
149
151
|
/** Sets the mode */
|
|
@@ -482,6 +484,12 @@ declare module BABYLON.NodeEditor {
|
|
|
482
484
|
}
|
|
483
485
|
|
|
484
486
|
|
|
487
|
+
export class DebugNodePropertyTabComponent extends React.Component<BABYLON.NodeEditor.SharedUIComponents.IPropertyComponentProps> {
|
|
488
|
+
refreshAll(): void;
|
|
489
|
+
render(): import("react/jsx-runtime").JSX.Element;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
|
|
485
493
|
export class ColorMergerPropertyTabComponent extends React.Component<BABYLON.NodeEditor.SharedUIComponents.IPropertyComponentProps> {
|
|
486
494
|
constructor(props: BABYLON.NodeEditor.SharedUIComponents.IPropertyComponentProps);
|
|
487
495
|
render(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -633,6 +641,7 @@ declare module BABYLON.NodeEditor {
|
|
|
633
641
|
export class DebugDisplayManager implements BABYLON.NodeEditor.SharedUIComponents.IDisplayManager {
|
|
634
642
|
private _previewCanvas;
|
|
635
643
|
private _previewImage;
|
|
644
|
+
private _onPreviewSceneAfterRenderObserver;
|
|
636
645
|
getHeaderClass(): string;
|
|
637
646
|
shouldDisplayPortLabels(): boolean;
|
|
638
647
|
getHeaderText(nodeData: BABYLON.NodeEditor.SharedUIComponents.INodeData): string;
|
|
@@ -888,6 +897,7 @@ declare module BABYLON.NodeEditor {
|
|
|
888
897
|
}> {
|
|
889
898
|
private _onIsLoadingChangedObserver;
|
|
890
899
|
private _onResetRequiredObserver;
|
|
900
|
+
private _consoleRef;
|
|
891
901
|
constructor(props: IPreviewAreaComponentProps);
|
|
892
902
|
componentWillUnmount(): void;
|
|
893
903
|
changeBackFaceCulling(value: boolean): void;
|
|
@@ -895,6 +905,8 @@ declare module BABYLON.NodeEditor {
|
|
|
895
905
|
_onPointerOverCanvas: () => void;
|
|
896
906
|
_onPointerOutCanvas: () => void;
|
|
897
907
|
changeParticleSystemBlendMode(newOne: number): void;
|
|
908
|
+
processPointerMove(e: React.PointerEvent<HTMLCanvasElement>): Promise<void>;
|
|
909
|
+
onKeyUp(e: React.KeyboardEvent<HTMLCanvasElement>): void;
|
|
898
910
|
render(): import("react/jsx-runtime").JSX.Element;
|
|
899
911
|
}
|
|
900
912
|
|