public static void FadeIn()
 {
     if (_instance == null)
     {
         Debug.LogError("Tried to fade in SceneAudioManager when one doesn't exist in the scene");
         return;
     }
     _instance._fadeIn();
 }