pixi.js
Version:
<p align="center"> <a href="https://pixijs.com" target="_blank" rel="noopener noreferrer"> <img height="150" src="https://files.pixijs.download/branding/pixijs-logo-transparent-dark.svg?v=1" alt="PixiJS logo"> </a> </p> <br/> <p align="center">
19 lines (18 loc) • 546 B
TypeScript
/**
* The urls for the Basis transcoder files.
* These can be set to custom paths if needed.
* @category assets
* @advanced
*/
export declare const basisTranscoderUrls: {
jsUrl: string;
wasmUrl: string;
};
/**
* Sets the Basis transcoder paths.
* This allows you to override the default paths for the Basis transcoder files.
* @param config - The configuration object containing the new paths.
* @category assets
* @advanced
*/
export declare function setBasisTranscoderPath(config: Partial<typeof basisTranscoderUrls>): void;