private void LoggedOutStateDisplay()
 {
     LogOutCanvas.SetActive(false);
     AuthenticationCanvas.SetActive(true);
     // Debug.Log(authManager.GetUserName());           // TODO: Convert this debug to screen space ui display.
     usernameInputField.GetComponent <InputField>().Select();
     usernameInputField.GetComponent <InputField>().text = "";
     passwordInputField.GetComponent <InputField>().Select();
     passwordInputField.GetComponent <InputField>().text = "";
     textInputFieldUsername = null;
     textInputFieldPassword = null;
 }
 private void LoggedInStateDisplay()
 {
     LogOutCanvas.SetActive(true);
     AuthenticationCanvas.SetActive(false);
     Debug.Log(authManager.GetUserName());           // TODO: Convert this debug to screen space ui display.
 }
 void ActivateExternalUIsMultiplayer()
 {
     LogOutCanvas.SetActive(true);
 }
 void DeactivateExternalUIsMultiplayer()
 {
     LogOutCanvas.SetActive(false);
 }