@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) • 463 B
TypeScript
import { AbstractAudioNode } from "./abstractAudioNode.js";
import type { AudioEngineV2 } from "./audioEngineV2.js";
/**
* Abstract class for the main audio output node.
*
* A main audio output is the last audio node in the audio graph before the audio is sent to the speakers.
*
* @see {@link AudioEngineV2.mainOut}
* @internal
*/
export declare abstract class _MainAudioOut extends AbstractAudioNode {
protected constructor(engine: AudioEngineV2);
}