mirror of
https://github.com/smallmain/cocos-enhance-kit.git
synced 2025-01-15 23:41:07 +00:00
13 lines
345 B
JavaScript
13 lines
345 B
JavaScript
|
const downloader = cc.assetManager.downloader;
|
||
|
const originalDownloadTTF = downloader._downloaders['.ttf'];
|
||
|
|
||
|
function downloadTTF (url, options, onComplete) {
|
||
|
// can't use cached ttf on Xiaomi platform
|
||
|
options.cacheEnabled = false;
|
||
|
originalDownloadTTF(url, options, onComplete);
|
||
|
}
|
||
|
|
||
|
downloader.register({
|
||
|
'.ttf': downloadTTF,
|
||
|
});
|