I am wondering if it is possible to run a fadeOut action half way through a moveTo action all on the same node. Here is my code:
id show = [CCShow action];
id move = [CCMoveTo actionWithDuration:2.5f position:ccp(70, 275)];
id seq = [CCSequence actions:show, move, nil];
id fade = [CCFadeOut actionWithDuration:2.5f];
id spawn = [CCSpawn actions:seq, fade, nil];
[extraTime runAction:spawn];
I need to be able to run the fade action half way through the move action if that is possible. Any help or suggestions would be appreciated.