@babylonjs/inspector 5.0.0-beta.8 → 5.0.0-beta.8-snapshot

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/readme.md DELETED
@@ -1,27 +0,0 @@
1
- Babylon.js inspector module
2
- =====================
3
-
4
- For usage documentation please visit http://doc.babylonjs.com/how_to/debug_layer.
5
-
6
- # Installation instructions
7
-
8
- To install using npm :
9
-
10
- ```
11
- npm install --save-dev @babylonjs/core @babylonjs/inspector
12
- ```
13
-
14
- # How to use
15
-
16
- Afterwards it can be imported to the your project using:
17
-
18
- ```
19
- import "@babylonjs/core/Debug/debugLayer";
20
- import "@babylonjs/inspector";
21
- ```
22
-
23
- The first line will ensure you can access the property debugLayer of the scene while the second will ensure the inspector can be used within your scene.
24
-
25
- This is a great example where code splitting or conditional loading could be use to ensure you are not delivering the inspector if not part of your final app.
26
-
27
- For more information you can have a look at our [our ES6 dedicated documentation](https://doc.babylonjs.com/features/es6_support).