首页 > 代码库 > 让精灵改变方向并前进
让精灵改变方向并前进
//让精灵动起来,并改变方向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)); } }
让精灵改变方向并前进
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。