@babylonjs/core
Version:
Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.
16 lines (15 loc) • 426 B
TypeScript
import { type DebugLayer } from "./debugLayer.pure.js";
declare module "../scene.pure.js" {
interface Scene {
/**
* @internal
* Backing field
*/
_debugLayer?: DebugLayer;
/**
* Gets the debug layer (aka Inspector) associated with the scene
* @see https://doc.babylonjs.com/toolsAndResources/inspector
*/
debugLayer: DebugLayer;
}
}