public void ClickBattleButton()
 {
     SoundManager.Instance.PlaySoundEffect(SoundType.BUTTON_CLICK);
     UIViewController.DeactivateUIView("ClientMainView");
     UIViewController.ActivateUIView(RoleView.Load());
     ClientGameManager.Instance.gameObject.SetActive(true);
 }
Exemple #2
0
 public void ClickNextButton()
 {
     Avatar.Instance.SetAvatarStats(_health, _speed, _range);
     UIViewController.ActivateUIView(RoleView.Load());
     ClientGameManager.Instance.gameObject.SetActive(true);
     UIViewController.DeactivateUIView("BackgroundView");
     UIViewController.DeactivateUIView("StatsView");
 }