How can I run Spawn on multiple MoveBy actions? For example one moves vertically and one horizontally?
Example:
Action *action = [Spawn actions:[MoveBy actionWithDuration:0.5f position:ccp(0,200)],[MoveBy actionWithDuration:0.5f position:ccp(cLoc.x-kitten.position.x, 0)],nil];
Only moves horizontally
Great thanks in advance!