Saturday, April 5, 2025
spot_img

Hotupdate cocos creator model 3.8.4 – Cocos Creator


Asset replace error: property/inner/native/08/0835f102-5471-47a3-9a76-01c07ac9cdb2/OpenSans-Common.ttf, Not Discovered

The supply already exists on the server, why can’t the downloaded supply be discovered?
@Tom_k pls assist me!!

Right here is the instance of hotupdate hyperlink on your reference: GitHub – cocos-creator/cocos-tutorial-hot-update: Tutorial venture for Cocos Creator scorching replace
There are two factors on your drawback:

  1. When constructing, don’t verify MD5 Cache,or it wont take hotupdate impact.
    2 .Ensure the hot-update plugin is underneath cocos venture packages folder.
    This plugin will inject the beneath codes after constructing, which is able to set search path:
// forward of essential.js will inject the codes
(perform () {
    if (typeof window.jsb === 'object') {
        var hotUpdateSearchPaths = localStorage.getItem('HotUpdateSearchPaths');
        if (hotUpdateSearchPaths) {
            var paths = JSON.parse(hotUpdateSearchPaths);
            jsb.fileUtils.setSearchPaths(paths);
            var fileList = [];
            var storagePath = paths[0] || '';
            var tempPath = storagePath + '_temp/';
            var baseOffset = tempPath.size;
            if (jsb.fileUtils.isDirectoryExist(tempPath) && !jsb.fileUtils.isFileExist(tempPath + 'venture.manifest.temp')) {
                jsb.fileUtils.listFilesRecursively(tempPath, fileList);
                fileList.forEach(srcPath => {
                    var relativePath = srcPath.substr(baseOffset);
                    var dstPath = storagePath + relativePath;
                    if (srcPath[srcPath.length] == "https://discussion board.cocosengine.org/") {
                        jsb.fileUtils.createDirectory(dstPath)
                    }
                    else {
                        if (jsb.fileUtils.isFileExist(dstPath)) {
                            jsb.fileUtils.removeFile(dstPath)
                        }
                        jsb.fileUtils.renameFile(srcPath, dstPath);
                    }
                })
                jsb.fileUtils.removeDirectory(tempPath);
            }
        }
    }
})();

In model 3.8.3, I nonetheless hotupdate usually, however after I improve to model 3.8.4, rebuild and push the sources again to the server, the obtain will not be discovered whereas the trail to obtain is appropriate.

I’m nonetheless following docs cocos creator

Related Articles

LEAVE A REPLY

Please enter your comment!
Please enter your name here

- Advertisement -spot_img

Latest Articles