예제 #1
0
 public void CloseUI(PlayerUIButtonType buttonType)
 {
     if (_isOpened && _buttonType == buttonType)
     {
         _isOpened = false;
         _animator.SetBool("isOpen", false);
     }
 }
예제 #2
0
 public void OpenUI(string buttonText, string mainText, PlayerUIButtonType buttonType)
 {
     if (!_isOpened)
     {
         _isOpened   = true;
         _buttonType = buttonType;
         _animator.SetBool("isOpen", true);
         _buttonText.text = buttonText;
         _mainText.text   = mainText;
     }
 }