babylonjs-node-editor 7.2.2 → 7.3.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.
|
@@ -215,7 +215,13 @@ export class PreviewManager {
|
|
|
215
215
|
private _hdrSkyBox;
|
|
216
216
|
private _hdrTexture;
|
|
217
217
|
private _serializeMaterial;
|
|
218
|
+
/**
|
|
219
|
+
* Create a new Preview Manager
|
|
220
|
+
* @param targetCanvas defines the canvas to render to
|
|
221
|
+
* @param globalState defines the global state
|
|
222
|
+
*/
|
|
218
223
|
constructor(targetCanvas: HTMLCanvasElement, globalState: GlobalState);
|
|
224
|
+
_initAsync(targetCanvas: HTMLCanvasElement): Promise<void>;
|
|
219
225
|
private _reset;
|
|
220
226
|
private _handleAnimations;
|
|
221
227
|
private _prepareLights;
|
|
@@ -4568,7 +4574,13 @@ declare module BABYLON.NodeEditor {
|
|
|
4568
4574
|
private _hdrSkyBox;
|
|
4569
4575
|
private _hdrTexture;
|
|
4570
4576
|
private _serializeMaterial;
|
|
4577
|
+
/**
|
|
4578
|
+
* Create a new Preview Manager
|
|
4579
|
+
* @param targetCanvas defines the canvas to render to
|
|
4580
|
+
* @param globalState defines the global state
|
|
4581
|
+
*/
|
|
4571
4582
|
constructor(targetCanvas: HTMLCanvasElement, globalState: GlobalState);
|
|
4583
|
+
_initAsync(targetCanvas: HTMLCanvasElement): Promise<void>;
|
|
4572
4584
|
private _reset;
|
|
4573
4585
|
private _handleAnimations;
|
|
4574
4586
|
private _prepareLights;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-node-editor",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.3.0",
|
|
4
4
|
"main": "babylon.nodeEditor.js",
|
|
5
5
|
"types": "babylon.nodeEditor.module.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"clean": "rimraf dist && rimraf babylon*.*"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"babylonjs": "^7.
|
|
17
|
+
"babylonjs": "^7.3.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@dev/build-tools": "1.0.0",
|