@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.
17 lines (16 loc) • 491 B
TypeScript
/**
* Interface used to define options for the Audio Engine
* @since 5.0.0
*/
export interface IAudioEngineOptions {
/**
* Specifies an existing Audio Context for the audio engine
* @deprecated Please use AudioEngineV2 instead
*/
audioContext?: AudioContext;
/**
* Specifies a destination node for the audio engine
* @deprecated Please use AudioEngineV2 instead
*/
audioDestination?: AudioDestinationNode | MediaStreamAudioDestinationNode;
}