UNPKG

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) 575 B
/** * The urls for the KTX transcoder library. * These can be set to custom paths if needed. * @category assets * @advanced */ export declare const ktxTranscoderUrls: { jsUrl: string; wasmUrl: string; }; /** * Sets the paths for the KTX transcoder library. * @param config - Partial configuration object to set custom paths for the KTX transcoder. * This allows you to override the default URLs for the KTX transcoder library. * @category assets * @advanced */ export declare function setKTXTranscoderPath(config: Partial<typeof ktxTranscoderUrls>): void;