@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.
18 lines • 528 B
JavaScript
export const _StereoAudioDefaults = {
pan: 0,
};
/**
* @param options The stereo audio options to check.
* @returns `true` if stereo audio options are defined, otherwise `false`.
*/
export function _HasStereoAudioOptions(options) {
return options.stereoEnabled || options.stereoPan !== undefined;
}
/**
* Abstract class representing the `stereo` audio property on a sound or audio bus.
*
* @see {@link AudioEngineV2.listener}
*/
export class AbstractStereoAudio {
}
//# sourceMappingURL=abstractStereoAudio.js.map