Cocos2d-x中遇到的问题

前端之家收集整理的这篇文章主要介绍了Cocos2d-x中遇到的问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1、按钮图片旋转:CCSprite rotation 与 CCMenuItemSprite 使用时的旋转

如果想让CCMenuItemSprite 中的图片旋转,不要旋转normalSprite 或selectSprite,旋转CCMenuItemSprite 实例

CCSprite* normal = CCSprite::create("LayerUserInfo/goleft.png");
	//normal->setRotation(180);	//不要旋转此图片
	CCMenuItemSprite* btn = CCMenuItemSprite::create(normal,AppUtils::cloneForGraySprite(normal),this,menu_selector(CUserInfo::menuFunsForOthersInfo));
	btn->setTag(105);
	btn->setRotation(180);	// 正确的写法,旋转按钮
原文链接:https://www.f2er.com/cocos2dx/341399.html

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