babylonjs-inspector 7.42.0 → 7.44.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.
package/babylon.inspector.d.ts
CHANGED
|
@@ -2420,7 +2420,7 @@ declare module INSPECTOR {
|
|
|
2420
2420
|
private updateDisplay;
|
|
2421
2421
|
set channels(channels: IChannel[]);
|
|
2422
2422
|
paintPixelsOnCanvas(pixelData: Uint8Array, canvas: HTMLCanvasElement): void;
|
|
2423
|
-
grabOriginalTexture(): Promise<Uint8Array
|
|
2423
|
+
grabOriginalTexture(): Promise<Uint8Array<ArrayBufferLike>>;
|
|
2424
2424
|
getMouseCoordinates(pointerInfo: BABYLON.PointerInfo): BABYLON.Vector2;
|
|
2425
2425
|
get scene(): BABYLON.Scene;
|
|
2426
2426
|
get canvas2D(): HTMLCanvasElement;
|
|
@@ -3124,7 +3124,7 @@ export class TextureCanvasManager {
|
|
|
3124
3124
|
private updateDisplay;
|
|
3125
3125
|
set channels(channels: IChannel[]);
|
|
3126
3126
|
paintPixelsOnCanvas(pixelData: Uint8Array, canvas: HTMLCanvasElement): void;
|
|
3127
|
-
grabOriginalTexture(): Promise<Uint8Array
|
|
3127
|
+
grabOriginalTexture(): Promise<Uint8Array<ArrayBufferLike>>;
|
|
3128
3128
|
getMouseCoordinates(pointerInfo: PointerInfo): Vector2;
|
|
3129
3129
|
get scene(): Scene;
|
|
3130
3130
|
get canvas2D(): HTMLCanvasElement;
|
|
@@ -10525,7 +10525,7 @@ declare module INSPECTOR {
|
|
|
10525
10525
|
private updateDisplay;
|
|
10526
10526
|
set channels(channels: IChannel[]);
|
|
10527
10527
|
paintPixelsOnCanvas(pixelData: Uint8Array, canvas: HTMLCanvasElement): void;
|
|
10528
|
-
grabOriginalTexture(): Promise<Uint8Array
|
|
10528
|
+
grabOriginalTexture(): Promise<Uint8Array<ArrayBufferLike>>;
|
|
10529
10529
|
getMouseCoordinates(pointerInfo: BABYLON.PointerInfo): BABYLON.Vector2;
|
|
10530
10530
|
get scene(): BABYLON.Scene;
|
|
10531
10531
|
get canvas2D(): HTMLCanvasElement;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "babylonjs-inspector",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.44.0",
|
|
4
4
|
"main": "babylon.inspector.bundle.max.js",
|
|
5
5
|
"types": "babylon.inspector.module.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
"clean": "rimraf dist && rimraf babylon*.* -g"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"babylonjs": "^7.
|
|
18
|
-
"babylonjs-gui": "^7.
|
|
19
|
-
"babylonjs-gui-editor": "^7.
|
|
20
|
-
"babylonjs-loaders": "^7.
|
|
21
|
-
"babylonjs-materials": "^7.
|
|
22
|
-
"babylonjs-serializers": "^7.
|
|
17
|
+
"babylonjs": "^7.44.0",
|
|
18
|
+
"babylonjs-gui": "^7.44.0",
|
|
19
|
+
"babylonjs-gui-editor": "^7.44.0",
|
|
20
|
+
"babylonjs-loaders": "^7.44.0",
|
|
21
|
+
"babylonjs-materials": "^7.44.0",
|
|
22
|
+
"babylonjs-serializers": "^7.44.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@dev/build-tools": "1.0.0",
|