-
把项目根目录的config.json文件拷贝到
simulator的exe同级目录
如:
把设置config.json文件的 "isLandscape": false,
isLandscape = true 代表横屏
isLandscape = false 代表竖屏设置后运行exe会报错
读取不到资源
需设置simulator\win32\src\main.lua中的2行
原文:
cc.FileUtils:getInstance():addSearchPath("src/")
cc.FileUtils:getInstance():addSearchPath("res/")
修改为:
cc.FileUtils:getInstance():addSearchPath("./src/")
cc.FileUtils:getInstance():addSearchPath("./res/")
在运行exe就可以了