public static void ResumeFromSavePoint() { IsInStoryMode = true; // It's a new game, so go to the tutorial. if (!Profile.HasPlayedTutorial) { } else { Overlay.FadeToBlack(); DataFolder.PlayStoryLevel(Profile.CurrentLevel); } }
/// <summary> /// Loads the tutorial level and takes the player there. /// </summary> private static void StartTutorial() { DataFolder.PlayStoryLevel("tutorial"); }