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));

相关文章

操作步骤 1、创建cocos2d-x工程 2、新建 Scene1.cpp Scene1.h Scene1.h代码 #ifndef __SCENE1_H__#defi...
开发环境:OS(WINDOWS 8.1 X64 企业版) cocos2d-x 2.2.1 vs2010 想给vs安装上cocos的模版,执行Install...
把创建项目做成一个批处理,当创建项目时可以省时省力很多。 操作步骤 1、在 E:cocos2d-x-2.2.1toolspr...
https://www.cnblogs.com/JiaoQing/p/3906780.html 四个响应函数 1 EventListenerPhysicsContact* evC...
转载于 http://www.cnblogs.com/kenkofox/p/3926797.html 熟悉js的dom事件或者flash事件的,基本都能立...
ScrollView(滚动容器)加载大量item时会导致游戏界面的卡顿,严重时整个界面会出现卡死的情况。最近项...