我在cocostudio中创建了一个新场景并将其导出.该导出包括场景的json文件和其他带图像的目录等等.我今天安装了cocostudio和cocos2dx 3.0. 我像代码一样继续运行: CCSSceneReader::sharedSceneReader(
我像代码一样继续运行:
CCSSceneReader::sharedSceneReader()->createNodeWithSceneFile("your_scene.json");
我在cocos2dx help docs(页面底部)和其他一些地方在网上看过它.
问题是没有一个名为CCSceneReader的类带有cocos2dx,我不知道在哪里可以找到它.
我对使用cocostudio导出的其他方法持开放态度,它不使用CCSceneReader,但我还没有找到任何有用的东西.有人有这个成功吗?
erparker在 this comment离开了这个答案Figured it out eventually, just a result of being unfamiliar with cocos2dx. If anyone was wondering, you need to remove the “CCS” from scene reader and also add “cocostudio::” if you’re not already using the cocostudio namespace (which by default, you’re not” I also needed to add “#include “editor-support/cocostudio/CocoStudio.h” to my header file. So, by default your new cocos2dx project isn’t using cocostudio. You need to add it