修改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; }
现在可以正常了。