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.

17 lines 539 B
/** * Abstract class representing a static sound buffer. * * A static sound buffer is a fully downloaded and decoded array of audio data that is ready to be played. * * Static sound buffers can be reused multiple times by different {@link StaticSound} instances. * * Static sound buffers are created by the {@link CreateSoundBufferAsync} function. * * @see {@link StaticSound.buffer} */ export class StaticSoundBuffer { constructor(engine) { this.engine = engine; } } //# sourceMappingURL=staticSoundBuffer.js.map