Skip to content

Instantly share code, notes, and snippets.

@Ben-G
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ben-G/571d17e39b51e565991e to your computer and use it in GitHub Desktop.
Save Ben-G/571d17e39b51e565991e to your computer and use it in GitHub Desktop.
Fix for Cocos2D + MGWUSDK
-(void) applicationWillResignActive:(UIApplication *)application
{
[[CCDirector sharedDirector] pause];
}
-(void) applicationDidEnterBackground:(UIApplication*)application
{
[[CCDirector sharedDirector] stopAnimation];
}
-(void) applicationWillEnterForeground:(UIApplication*)application
{
[[CCDirector sharedDirector] startAnimation];
}
- (void)applicationDidBecomeActive:(UIApplication *)application {
[[CCDirector sharedDirector] setNextDeltaTimeZero:YES];
[[CCDirector sharedDirector] resume];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment