UNPKG

@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) 442 B
/** * Note that users may not import this file, so each time we want to call one of them, we must check if it exists. * @internal */ declare module "../../Engines/abstractEngine.js" { interface AbstractEngine { /** @internal */ _debugPushGroup(groupName: string): void; /** @internal */ _debugPopGroup(): void; /** @internal */ _debugInsertMarker(text: string): void; } } export {};