码迷,mamicode.com
首页 > 其他好文 > 详细

cocos3 帧动画无限重复

时间:2014-12-28 09:14:12      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

    auto animation = Animation::create(); 
    animation->addSpriteFrameWithFile("NPC/hero.png");
    animation->addSpriteFrameWithFile("NPC/hero1.png");
  
    // should last 2.8 seconds. And there are 14 frames. 
    animation->setDelayPerUnit(2.8f / 14.0f); 
    animation->setRestoreOriginalFrame(true); 
    auto action = Animate::create(animation);
    auto repeat=RepeatForever::create(action);
    auto creep=RepeatForever::create(action);
    runAction(creep); 

 

cocos3 帧动画无限重复

标签:

原文地址:http://www.cnblogs.com/yufenghou/p/4189593.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!