Cocos Code IDE解决ios模拟器和Android真机无法热更新代码问题

修改Runtime.cpp文件,添加一些代码

bool FileServer::receiveFile(int fd)
{
   // ...
    string finish("finish\n");
    send(fd, finish.c_str(), finish.size(),0);
    CCLOG("finish\n");
    // I add these code
    Director::getInstance()->getScheduler()->performFunctionInCocosThread([=](){
        CCLOG("reload module %s", moduleName.c_str());
        reloadScript(moduleName);
        reloadScript("");
    });
    return true;
}

现在可以正常了。
Cocos Code IDE解决ios模拟器和Android真机无法热更新代码问题

Cocos Code IDE解决ios模拟器和Android真机无法热更新代码问题,布布扣,bubuko.com

Cocos Code IDE解决ios模拟器和Android真机无法热更新代码问题

上一篇:Web 开发中 20 个很有用的 CSS 库


下一篇:Supporting Connected Routes to Subnet Zero