melonJS
    Preparing search index...

    Interface LoadSettings

    Optional settings applied to the audio resource load. The loader uses an XHR under the hood (via Howler), so the available knobs mirror what an XHR can be told to do.

    interface LoadSettings {
        nocache?: string;
        withCredentials?: boolean;
    }
    Index

    Properties

    nocache?: string

    Cache-busting query string appended to the resource URL.

    withCredentials?: boolean

    Forwarded to XMLHttpRequest.withCredentials. Set true so cross-origin loads include cookies / auth headers (e.g. when the audio is served from an authenticated CDN).