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

让精灵改变方向并前进

时间:2014-11-27 17:39:50      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   os   sp   on   div   log   

//让精灵动起来,并改变方向
void EnemyBase::changeDirection(float dt)  
{  
    auto curr = currPoint();  
    if(curr->getPositionX() > this->getPosition().x )  
    {  
        runAction( Animate::create(AnimationCache::getInstance()->getAnimation("runright"))) ;  
    }else{  
        runAction( Animate::create(AnimationCache::getInstance()->getAnimation("runleft"))  );  
    }  
}
//敌人前进的动画
void EnemyBase::runFllowPoint()  
{  
    auto point = currPoint();  
    setPosition(point->getPosition());  
    point = nextPoint();     
    if( point!= NULL ){  
        runAction(CCSequence::create(MoveTo::create(getRunSpeed(), point->getPosition())  
                                        , CallFuncN::create(CC_CALLBACK_0(EnemyBase::runFllowPoint, this))  
                                        , NULL));  
    }  
}

 

让精灵改变方向并前进

标签:style   blog   io   color   os   sp   on   div   log   

原文地址:http://www.cnblogs.com/newlist/p/4126526.html

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