我不明白,我绝对不能让它工作,我想要一个播放动画并使用CCAnimate
ansCCMoveTo
类移动精灵的动作序列。这些类是否存在错误或特殊之处,导致在这样的 CCSequence 动作中将其串在一起时不会移动或动画。
action = [CCSequence actions:
[CCMoveTo actionWithDuration:moveDuration position:touchLocation],
[CCAnimate actionWithAnimation:self.walkingAnim],
[CCCallFunc actionWithTarget:self selector:@selector(objectMoveEnded)], nil];
[self runAction:action];
我