First time method "StartGame:" in Menu.h is launched, the game works impeccably.

However during playtime, if user goes back to Menu- I use

[[CCDirector sharedDirector]replaceScene:[Menu scene]];

all type of animation freezes and schedule functions are unresponsive.

What the heck is going on ?

link|improve this question
feedback

1 Answer

Did you override any of these methods?

 -(void) onEnter;
 -(void) onEnterTransitionDidFinish;
 -(void) onExit;
 -(void) cleanup;

If so, make sure you call the super implementation (ie [super onEnter];) inside each method, otherwise all kinds of odd things can occur.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.