我有一个CCScene,我正在通过addChild向其添加CCLayer:
[self addChild:helloWorldLayer];
有没有一种方法可以向这个孩子添加过渡,类似于如何执行此操作?
[CCTransitionFade transitionWithDuration:1.00f scene:[HelloWorldScene scene]];
最佳答案
试试这个:
[[CCDirector sharedDirector] replaceScene:[CCTransitionFade transitionWithDuration:1.0 scene:[HelloWorldScene scene] withColor:ccWHITE]];