@babylonjs/inspector 7.8.1 → 7.9.0
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +7 -7
- package/readme.md +4 -5
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@babylonjs/inspector",
|
3
|
-
"version": "7.
|
3
|
+
"version": "7.9.0",
|
4
4
|
"module": "dist/babylon.inspector.bundle.max.js",
|
5
5
|
"main": "dist/babylon.inspector.bundle.max.js",
|
6
6
|
"typings": "dist/babylon.inspector.module.d.ts",
|
@@ -32,12 +32,12 @@
|
|
32
32
|
"@types/react-dom": ">=16.0.9"
|
33
33
|
},
|
34
34
|
"devDependencies": {
|
35
|
-
"@babylonjs/core": "^7.
|
36
|
-
"@babylonjs/gui": "^7.
|
37
|
-
"@babylonjs/gui-editor": "^7.
|
38
|
-
"@babylonjs/loaders": "^7.
|
39
|
-
"@babylonjs/materials": "^7.
|
40
|
-
"@babylonjs/serializers": "^7.
|
35
|
+
"@babylonjs/core": "^7.9.0",
|
36
|
+
"@babylonjs/gui": "^7.9.0",
|
37
|
+
"@babylonjs/gui-editor": "^7.9.0",
|
38
|
+
"@babylonjs/loaders": "^7.9.0",
|
39
|
+
"@babylonjs/materials": "^7.9.0",
|
40
|
+
"@babylonjs/serializers": "^7.9.0",
|
41
41
|
"@lts/gui": "1.0.0",
|
42
42
|
"react": "^17.0.2",
|
43
43
|
"react-dom": "^17.0.2"
|
package/readme.md
CHANGED
@@ -1,5 +1,4 @@
|
|
1
|
-
Babylon.js inspector module
|
2
|
-
=====================
|
1
|
+
# Babylon.js inspector module
|
3
2
|
|
4
3
|
For usage documentation please visit https://doc.babylonjs.com/how_to/debug_layer.
|
5
4
|
|
@@ -7,15 +6,15 @@ For usage documentation please visit https://doc.babylonjs.com/how_to/debug_laye
|
|
7
6
|
|
8
7
|
To install using npm :
|
9
8
|
|
10
|
-
```
|
11
|
-
npm install
|
9
|
+
```shell
|
10
|
+
npm install @babylonjs/core @babylonjs/inspector
|
12
11
|
```
|
13
12
|
|
14
13
|
# How to use
|
15
14
|
|
16
15
|
Afterwards it can be imported to your project using:
|
17
16
|
|
18
|
-
```
|
17
|
+
```javascript
|
19
18
|
import "@babylonjs/core/Debug/debugLayer";
|
20
19
|
import "@babylonjs/inspector";
|
21
20
|
```
|