Exemple #1
0
        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);
            }
        }
Exemple #2
0
 /// <summary>
 /// Loads the tutorial level and takes the player there.
 /// </summary>
 private static void StartTutorial()
 {
     DataFolder.PlayStoryLevel("tutorial");
 }