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.

24 lines (23 loc) 729 B
import { _MainAudioOut } from "../abstractAudio/mainAudioOut.js"; import type { _WebAudioEngine } from "./webAudioEngine.js"; import type { IWebAudioInNode } from "./webAudioNode.js"; /** @internal */ export declare class _WebAudioMainOut extends _MainAudioOut implements IWebAudioInNode { private _destinationNode; private _gainNode; private _volume; /** @internal */ readonly engine: _WebAudioEngine; /** @internal */ constructor(engine: _WebAudioEngine); /** @internal */ get _inNode(): AudioNode; /** @internal */ get volume(): number; /** @internal */ set volume(value: number); /** @internal */ dispose(): void; /** @internal */ getClassName(): string; }