@babylonjs/inspector
v8.50.2
Published
The Babylon Inspector is a diagnostic tool that makes it possible to view and edit the scene graph, properties of entities within the scene, and more.
Maintainers
Readme
BabylonJS Inspector
The Babylon Inspector is a diagnostic tool that makes it possible to view and edit the scene graph, properties of entities within the scene, and more.
You can learn more in the Inspector documentation.
Installation
Install the package using npm:
npm install @babylonjs/inspectorThe simplest way to use Inspector is to call the ShowInspector function, passing in your scene:
import { ShowInspector } from "@babylonjs/inspector";
// Your code that sets up a Babylon.js scene...
ShowInspector(scene);