Audio Loom - v0.2.2
    Preparing search index...

    Interface AudioTrack

    Represents a registered audio track.

    interface AudioTrack {
        key: string;
        group: string;
        path: string;
        buffer?: AudioBuffer;
        audio?: HTMLAudioElement;
    }
    Index

    Properties

    key: string

    Unique identifier for this sound (e.g., 'explosion', 'footstep').

    group: string

    Audio group for volume/mute control (e.g., 'sfx', 'music').

    path: string

    URL or path to the audio file.

    buffer?: AudioBuffer

    Decoded audio buffer for one-shot playback (populated after preload).

    audio?: HTMLAudioElement

    Use path instead. Will be removed in next major version.