AppDelegate.h

前端之家收集整理的这篇文章主要介绍了AppDelegate.h前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

2 IntelliSense: "MenuScene *" 类型的实参与 "cocos2d::Scene *" 类型的形参不兼容

解决

自己在MenuScene中重写了Scene的创建方法,而appdelegate中调用的是

auto scene=MenuScene::create();

director->runWithScene(scene);

我自己的在menuScene中则是

static cocos2d::Scene* createscene();

因此会报错

只要改成这样就ok了


auto scene=MenuScene::createscene();

director->runWithScene(scene);

原文链接:https://www.f2er.com/cocos2dx/341883.html

猜你在找的Cocos2d-x相关文章