@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.
14 lines (13 loc) • 442 B
TypeScript
declare module "../../Engines/abstractEngine.js" {
interface AbstractEngine {
/** @internal */
_debugPushGroup(groupName: string, targetObject?: number): void;
/** @internal */
_debugPopGroup(targetObject?: number): void;
/** @internal */
_debugInsertMarker(text: string, targetObject?: number): void;
/** @internal */
_debugFlushPendingCommands(): void;
}
}
export {};