I'm trying to run two CCMoveTo
actions on my sprite like this:
[mySprite runAction:moveUp];
[mySprite runAction:moveRight];
I know that I can combine this motion into a single CCMoveTo
however having them separate has some benefits (for example I can reverse the x or y motion independently).
Unfortunately moveUp
is totally ignored. Any ideas why?