Cocos2D-JS无法加载从CocosStudio导出的json文件
Cocos2D-JS can't load json file exported from CocosStudio
我正在尝试加载从 cocosstudio v2.3.2 导出的 json 文件
var myScene = ccs.sceneReader.createNodeWithSceneFile('res/Scene.json');
我从 sample-cocos2d-js-scene-gui-master
那里得到了这段代码
问题是,我得到这个错误:Can't find the parser : undefined
我该如何解决这个问题?
我对使用 javascript 很陌生,希望有人能帮助我。
谢谢。
尝试使用ccs.load("")
它是新的api。这个函数 returns table {node, action}
node it's your scene "node" and "action" it's a time line action it's optional.
您的代码将如下所示:
var sceneRes = ccs.load("res/Scene.json");
this.addChild(sceneRes.node);
如果你想使用这个动作,只需 运行 它用于节点。
sceneRes.node.runAction(sceneRes.action);
sceneRes.action.gotoFrameAndPlay(0, true);
希望这对您有所帮助,抱歉我的英语不好
我正在尝试加载从 cocosstudio v2.3.2 导出的 json 文件
var myScene = ccs.sceneReader.createNodeWithSceneFile('res/Scene.json');
我从 sample-cocos2d-js-scene-gui-master
那里得到了这段代码
问题是,我得到这个错误:Can't find the parser : undefined
我该如何解决这个问题?
我对使用 javascript 很陌生,希望有人能帮助我。
谢谢。
尝试使用ccs.load("")
它是新的api。这个函数 returns table {node, action}
node it's your scene "node" and "action" it's a time line action it's optional.
您的代码将如下所示:
var sceneRes = ccs.load("res/Scene.json");
this.addChild(sceneRes.node);
如果你想使用这个动作,只需 运行 它用于节点。
sceneRes.node.runAction(sceneRes.action);
sceneRes.action.gotoFrameAndPlay(0, true);
希望这对您有所帮助,抱歉我的英语不好