0

I need to run a Sequence of actions on different CCNods at the same time. Do I need to run 2 CCSequence::create ?

I need them to start at the same time and if I execute 2 CCSequence::create one after the other, the nods will not run the actions at the same time.

Any ideas?

4

1 回答 1

2
node1->runAction(CCSequence::create(...));
node2->runAction(CCSequence::create(...));

这将同时运行动作。并且为每个节点创建 CCSequence 也很重要。

于 2013-07-30T10:01:42.420 回答