public static void EnterApp() { UINavigation.SetState(true); UIManager.Open(UILocation.Loading); }
private void EnterLogin() { UINavigation.SetState(false); UIManager.Open(UILocation.Login); }
void Awake() { Instance = this; mIsVisible = true; }
/// <summary> Called when user is force logged out. </summary> private void OnLogOut() { UINavigation.SetState(false); UIManager.Open(UILocation.Loading); }
public void Initialize(UINavigation navigation) { mTransform = GetComponent <RectTransform>(); mNavigation = navigation; SetState(false, -1); }