Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
実際、質問はタイトルにあります。とにかく繰り返したいと思います。 質問: 2つの異なるCCActionを2つの異なるCCSpriteに適用し、それらを1つのCCLayerで同時に実行するにはどうすればよいですか?
前もって感謝します!
CCLayerはそれとは何の関係もありません。アクションを含むrunActionメッセージを次々に送信して、アクションの実行を同時に開始します。
id action1 = [CCFadeOut actionWithDuration:1]; [sprite1 runAction:action1]; id action2 = [CCFadeIn actionWithDuration:1]; [sprite2 runAction:action2];