From f82fdb7134632c1a52902d44c0d555dac0225898 Mon Sep 17 00:00:00 2001 From: Starla Insigna Date: Tue, 25 Dec 2012 18:32:51 -0500 Subject: Fixed cart driving wrong direction and made all game modes available for testing purposes --- Classes/GameModeSelectionLayer.m | 11 ++++++----- Resources/Info.plist | 4 ++-- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/Classes/GameModeSelectionLayer.m b/Classes/GameModeSelectionLayer.m index e7b6966..03af89d 100644 --- a/Classes/GameModeSelectionLayer.m +++ b/Classes/GameModeSelectionLayer.m @@ -49,23 +49,24 @@ GameModeSelection* collectSelection; - if ([defaults boolForKey:@"hasDoneTutorial"]) + collectSelection = [GameModeSelection selectionWithName:@"Collect" location:@"Paris" filename:@"paris" unlocked:YES]; +/* if ([defaults boolForKey:@"hasDoneTutorial"]) { collectSelection = [GameModeSelection selectionWithName:@"Collect" location:@"Paris" filename:@"paris" unlocked:YES]; } else { collectSelection = [GameModeSelection selectionWithName:@"Collect" location:@"Paris" filename:@"paris" unlockCondition:@"Beat the tutorial!"]; - } + }*/ [gameModes addObject:collectSelection]; GameModeSelection* jumpSelection; - - if ([defaults boolForKey:@"unlockedJumpMode"]) + jumpSelection = [GameModeSelection selectionWithName:@"Jump" location:@"Venice" filename:@"venice" unlocked:YES]; +/* if ([defaults boolForKey:@"unlockedJumpMode"]) { jumpSelection = [GameModeSelection selectionWithName:@"Jump" location:@"Venice" filename:@"venice" unlocked:YES]; } else { jumpSelection = [GameModeSelection selectionWithName:@"Jump" location:@"Venice" filename:@"venice" unlockCondition:@"Get 3000 points in Collect!"]; - } + }*/ [gameModes addObject:jumpSelection]; diff --git a/Resources/Info.plist b/Resources/Info.plist index 7a4d9c5..c280170 100755 --- a/Resources/Info.plist +++ b/Resources/Info.plist @@ -33,7 +33,7 @@ CFBundleURLTypes CFBundleVersion - 61 + 62 LSRequiresIPhoneOS UIPrerenderedIcon @@ -49,7 +49,7 @@ UISupportedInterfaceOrientations - UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight UTExportedTypeDeclarations -- cgit 1.4.1