packages/dev/inspector/README.md
An extension to easily debug your Babylon.js application, made with HTML/CSS. This extension replaces the old limited debug layer.
Call the method show of the scene debugLayer:
scene.debugLayer.show();
This method will retrieve dynamically the library babylon.inspector.bundle.js, download it and add
it to the html page.
If you don't have access to internet, the inspector should be imported manually in your HTML page :
<script src="babylon.inspector.bundle.js" />
Then, call the method show of the scene debugLayer:
scene.debugLayer.show();
A right panel will be created containing the Babylon.js inspector.
Full inspector documentation available here.
Please refer to the contribution guide. After building, the Playground task offers easy access to the Inspector.