From 9f4bf94a763afba795fb991006081505c3ae466b Mon Sep 17 00:00:00 2001 From: Starla Insigna Date: Thu, 25 Aug 2011 13:30:00 -0400 Subject: Added Jump to selection screen It currently uses a temporary picture and is unlockable after reaching 5000 points in Collect, at which point a little notification appears at the top of the screen telling you that you've unlocked a new game mode. Also fixed a bug in GameMode with the iteration of objects that would cause the rest of tick to not be called because objects were removed from the set while it was being iterated over. Refs #204 --- Classes/Cart_CollectAppDelegate.m | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Classes/Cart_CollectAppDelegate.m') diff --git a/Classes/Cart_CollectAppDelegate.m b/Classes/Cart_CollectAppDelegate.m index ba9d60b..1a6759c 100755 --- a/Classes/Cart_CollectAppDelegate.m +++ b/Classes/Cart_CollectAppDelegate.m @@ -14,6 +14,8 @@ #import "RootViewController.h" #import "MainMenuLayer.h" #import "TestFlight.h" +#import "CCNotifications.h" +#import "notificationDesign.h" @implementation Cart_CollectAppDelegate @@ -64,6 +66,8 @@ CCDirector *director = [CCDirector sharedDirector]; + CCNotifications* notifications = [CCNotifications sharedManager]; + [director setNotificationNode:notifications]; // Init the View Controller viewController = [[RootViewController alloc] initWithNibName:nil bundle:nil]; -- cgit 1.4.1