@babylonjs/node-editor 7.47.2 → 7.48.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.
|
@@ -183,6 +183,7 @@ export class GlobalState {
|
|
|
183
183
|
filesInput: FilesInput;
|
|
184
184
|
onRefreshPreviewMeshControlComponentRequiredObservable: Observable<void>;
|
|
185
185
|
previewTexture: Nullable<RenderTargetTexture>;
|
|
186
|
+
pickingTexture: Nullable<RenderTargetTexture>;
|
|
186
187
|
onPreviewSceneAfterRenderObservable: Observable<void>;
|
|
187
188
|
onPreviewUpdatedObservable: Observable<NodeMaterial>;
|
|
188
189
|
debugBlocksToRefresh: NodeMaterialDebugBlock[];
|
|
@@ -1283,6 +1284,7 @@ export class PreviewAreaComponent extends React.Component<IPreviewAreaComponentP
|
|
|
1283
1284
|
}> {
|
|
1284
1285
|
private _onIsLoadingChangedObserver;
|
|
1285
1286
|
private _onResetRequiredObserver;
|
|
1287
|
+
private _consoleRef;
|
|
1286
1288
|
constructor(props: IPreviewAreaComponentProps);
|
|
1287
1289
|
componentWillUnmount(): void;
|
|
1288
1290
|
changeBackFaceCulling(value: boolean): void;
|
|
@@ -1290,6 +1292,8 @@ export class PreviewAreaComponent extends React.Component<IPreviewAreaComponentP
|
|
|
1290
1292
|
_onPointerOverCanvas: () => void;
|
|
1291
1293
|
_onPointerOutCanvas: () => void;
|
|
1292
1294
|
changeParticleSystemBlendMode(newOne: number): void;
|
|
1295
|
+
processPointerMove(e: React.PointerEvent<HTMLCanvasElement>): Promise<void>;
|
|
1296
|
+
onKeyUp(e: React.KeyboardEvent<HTMLCanvasElement>): void;
|
|
1293
1297
|
|
|
1294
1298
|
}
|
|
1295
1299
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@babylonjs/node-editor",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.48.0",
|
|
4
4
|
"main": "dist/babylon.nodeEditor.max.js",
|
|
5
5
|
"module": "dist/babylon.nodeEditor.max.js",
|
|
6
6
|
"esnext": "dist/babylon.nodeEditor.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.48.0",
|
|
27
27
|
"react": "^17.0.2",
|
|
28
28
|
"react-dom": "^17.0.2"
|
|
29
29
|
},
|