interface AudioClip {
    activeClips: {
        [soundId: number]: ActiveClip;
    };
    config: {
        ephemeral: boolean;
        preload: boolean;
    };
}

Properties

Properties

activeClips: {
    [soundId: number]: ActiveClip;
}

Type declaration

config: {
    ephemeral: boolean;
    preload: boolean;
}

Type declaration

  • ephemeral: boolean
  • preload: boolean

Generated using TypeDoc