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

    Interface ActiveSoundInstance

    Represents an active one-shot sound instance. Used internally to track playing sounds for pool management.

    interface ActiveSoundInstance {
        id: string;
        key: string;
        group: string;
        sourceNode: AudioBufferSourceNode;
        gainNode: GainNode;
        startTime: number;
    }
    Index

    Properties

    id: string

    Unique instance identifier.

    key: string

    Audio key being played.

    group: string

    Audio group this sound belongs to.

    sourceNode: AudioBufferSourceNode

    Web Audio source node for this sound.

    gainNode: GainNode

    Individual gain node for this sound instance.

    startTime: number

    AudioContext time when playback started.