API reference
Every public class, method, and event in @codexo/exojs. Generated from source.
typeSoundSpriteSheet
Contents of a sound sprite sidecar: the same shape SoundAssetOptions.sprites accepts inline, as a standalone JSON document. ```json { "impact": { "start": 0.5, "end": 0.8 }, "hum": { "start": 1.2, "end": 4.0, "loop": true } } ``` Times are seconds into the decoded buffer. This is ExoJS's own descriptor and the only format the loader reads: `audiosprite` and Howler atlases store `[offsetMs, durationMs]` tuples and are converted once at build time, not on every load.
import { SoundSpriteSheet } from '@codexo/exojs'Contents of a sound sprite sidecar: the same shape SoundAssetOptions.sprites accepts inline, as a standalone JSON document.
```json { "impact": { "start": 0.5, "end": 0.8 }, "hum": { "start": 1.2, "end": 4.0, "loop": true } } ```
Times are seconds into the decoded buffer. This is ExoJS's own descriptor and the only format the loader reads: `audiosprite` and Howler atlases store `[offsetMs, durationMs]` tuples and are converted once at build time, not on every load.