cocos2d-x动画

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

在头文件中声明变量:

cocos2d::Animation* g_left_animation;

定义和设置:
g_left_animation = cocos2d::Animation::create();
g_left_animation->addSpriteFrame(g_frameCache->getSpriteFrameByName("monkey5.png"));
g_left_animation->addSpriteFrame(g_frameCache->getSpriteFrameByName("monkey6.png"));
g_left_animation->addSpriteFrame(g_frameCache->getSpriteFrameByName("monkey7.png"));
g_left_animation->addSpriteFrame(g_frameCache->getSpriteFrameByName("monkey8.png"));

g_left_animation->setDelayPerUnit(2.8f / 14.0f); // 这个动画包含14帧,将会持续2.8秒.  
g_left_animation->setRestoreOriginalFrame(true); // 14帧播放完之后返回到第一帧  

cocos2d::Animate* animate = cocos2d::Animate::create(g_left_animation);

动画使用:
g_leftMonkey->runAction(cocos2d::RepeatForever::create(g_left_animation));

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