Exemplo n.º 1
0
    public void DisableAllPanels()
    {
        LoadingPanel.SetActive(false);

        AccountPanel.SetActive(false);
        ProcessPanel.SetActive(false);

        LobbyPanel.SetActive(false);
        CharacterSelectPanel.SetActive(false);
        ProfilePanel.SetActive(false);
        ShopPanel.SetActive(false);
        FriendsPanel.SetActive(false);
        GameModePanel.SetActive(false);
        SettingsPanel.SetActive(false);
        AboutPanel.SetActive(false);
        WaitingPanel.SetActive(false);
    }
Exemplo n.º 2
0
 public void OnClick_CreateAccount()
 {
     ProcessPanel.SetActive(true);
     UsernamePanel.SetActive(true);
     SignUpButton.SetActive(true);
 }
Exemplo n.º 3
0
 public void OnClick_LogIn()
 {
     ProcessPanel.SetActive(true);
     UsernamePanel.SetActive(false);
     SignInButton.SetActive(true);
 }