void TitleEnter()
 {
     Debug.Log("Title ENTER");
     twineTextPlayer = Object.FindObjectOfType <TwineTextPlayer>();
     if (twineTextPlayer != null)
     {
         Debug.Log("TwineTextPlayer found");
     }
     else
     {
         Debug.Log("TwineTextPlayer NOT found");
     }
     if (soundEngine != null)
     {
         soundEngine.PlaySoundWithName("ImproperShutdown");
         //soundEngine.PlaySoundWithName("FirstText");
     }
     if (musicEngine != null)
     {
         Debug.Log("Getting current music snapshot");
         musicEngine.mixerSnapshots[0].TransitionTo(musicEngine.pauseTransitionTime);
         musicEngine.currentMusicSnapshot = musicEngine.mixerSnapshots[2];
     }
 }