1

我正在尝试为我的游戏制作动画,一只蚂蚁离开它的巢穴。它应该从右下角下降巢穴,面朝下,然后再次直视。

我创建了两个动作序列,一个用于移动,另一个用于旋转,并将它们放在一个 CCSpawn 中。如果我只执行移动动作,它可以正常工作,但是当动作一起执行时,最后精灵会回到原来的位置。

我不知道发生了什么。你们能帮忙吗?

CCLayer * gameLayer = CCLayer::create();

Ant* ant = Ant::create(); // Ant is a CCSprite

CCPoint nestp = ccp(45, 172);

ant->setPosition(nestp);

gameLayer->addChild(ant);

addChild(gameLayer);

    // ant walking animation
CCAnimate * antWalk = CCAnimate::create(_antWalk);
ant->runAction(CCRepeatForever::create(antWalk));   

CCPoint p1 = ccp(55, 165), p2 = ccp(75,160), p3 = ccp(90,110), p4 = ccp(105, 50);   

CCSequence *moveOut = (CCSequence *)CCSequence::create(CCMoveTo::create(0.3, p1), CCMoveTo::create(0.3, p2), CCMoveTo::create(0.7, p3), CCMoveTo::create(0.7, p4), NULL);

CCSequence *rotateOut = (CCSequence *) CCSequence::create(CCRotateTo::create(0.5, 50), CCDelayTime::create(1), CCRotateTo::create(0.5, 0));

CCSpawn *leaveNest = (CCSpawn *)CCSpawn::create(moveOut, rotateOut, NULL);

ant->runAction(leaveNest);
4

1 回答 1

1

在查看我自己的问题时,我意识到我忘记在旋转序列的末尾添加 NULL。它应该是这样的:

CCSequence *rotateOut = (CCSequence *) CCSequence::create(CCRotateTo::create(0.5, 50), CCDelayTime::create(1), CCRotateTo::create(0.5, 0), NULL);

我不会想到这种行为,因为没有错误,这就是为什么我花了这么长时间才发现但现在它工作正常!我希望它能帮助遇到同样问题的人。

于 2012-10-15T12:47:05.880 回答