Cocos2D-JS can#39;t load json file exported from CocosStudio(Cocos2D-JS 无法加载从 CocosStudio 导出的 json 文件)
问题描述
我正在尝试加载从 cocosstudio v2.3.2 导出的 json 文件
I'm trying to load a json file exported from cocosstudio v2.3.2
var myScene = ccs.sceneReader.createNodeWithSceneFile('res/Scene.json');
我从 sample-cocos2d-js-scene-gui-master
得到这段代码
问题是,我收到此错误:找不到解析器:未定义
我该如何解决这个问题?
我对使用 javascript 很陌生,希望有人可以帮助我.谢谢.
I got this code from sample-cocos2d-js-scene-gui-master
The problem is, i get this error: Can't find the parser : undefined
How do i fix this issue?
I'm very new to using javascript and I hope someone can help me with this.
Thank you.
推荐答案
尝试使用 ccs.load("")
新的api.此函数返回表 {node, action}
节点它是你的场景节点"和动作"它是一个时间线动作它是可选的.
您的代码如下所示:
try to use ccs.load("")
It's new api. This function returns table {node, action}
node it's your scene "node" and "action" it's a time line action it's optional.
Your code would look like this:
var sceneRes = ccs.load("res/Scene.json");
this.addChild(sceneRes.node);
如果您想使用该操作,只需为节点运行它即可.
And if you want use the action, just run it for node.
sceneRes.node.runAction(sceneRes.action);
sceneRes.action.gotoFrameAndPlay(0, true);
希望对您有所帮助,对我的英语感到抱歉
Hope this help, and sorry for my english
这篇关于Cocos2D-JS 无法加载从 CocosStudio 导出的 json 文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Cocos2D-JS 无法加载从 CocosStudio 导出的 json 文件
基础教程推荐
- Chart.js 在线性图表上拖动点 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 直接将值设置为滑块 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01