// Update is called once per frame
 void Update()
 {
     if (Input.GetKeyDown(KeyCode.LeftControl))
     {
         // This is passing a reference to the LoadScene function to be run
         // when the fade is complete
         fader.FadeDown(LoadScene);
     }
 }