Hi all,
how to achieve smooth transition between intro movie and first scene in cocos2d? Now there is a blick of black background between.
MMoviePlayer is added to director view:
and how to proceed to the first scene? I've got a handler
now what? Currently I'm removing moviePlayer.view from superview and I don't like it. I want to crossfade intro and first scene. Any idea will be appreciate.
Les
how to achieve smooth transition between intro movie and first scene in cocos2d? Now there is a blick of black background between.
MMoviePlayer is added to director view:
Code:
[[[CCDirector sharedDirector] openGLView] addSubview:moviePlayer.view]
and how to proceed to the first scene? I've got a handler
Code:
- (void)moviePlaybackDidFinish:(NSNotification *)aNotification {
}
now what? Currently I'm removing moviePlayer.view from superview and I don't like it. I want to crossfade intro and first scene. Any idea will be appreciate.
Les