Visual Studio 2017导入Cocos2D项目

时间:2017-04-26 03:15:42

标签: visual-studio cocos2d-x visual-studio-2017 cocos2d-x-3.0

首先,我使用" cocos new ..."命令使用cpp语言创建新的cocos2d项目。然后我点击CarGame / proj.win32 / CarGame.sln在Visual Studio 2017中打开它,但我得到全屏错误。

你能告诉我什么是错误吗? 有屏幕截图: enter image description here

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:0)

问题在于Cocos2d-x中存在的某些数据类型以及编译器看到的头文件中的其他位置。

Cocos2d-x的所有文件都存在于cocos2d命名空间中,因此前置cocos2d以使用cocos2d-x文件而不是using命名空间用于cocos2d

所以从实现文件的顶部删除USING_NS_CC micro。