CCAction* ac1 = …
CCAction* ac2 = …
CCAction* ac3 = …
现在的需求时ac1和ac2同时执行,都执行完之后执行ac3怎么搞```?
CCSequence::createWithTwoActions( CCSpawn::create(ac1, ac2), ac3);
CCAction* ac1 = …
CCAction* ac2 = …
CCAction* ac3 = …
现在的需求时ac1和ac2同时执行,都执行完之后执行ac3怎么搞```?
CCSequence::createWithTwoActions( CCSpawn::create(ac1, ac2), ac3);