예제 #1
0
 protected override void OnEnable()
 {
     base.OnEnable();
     this.currentState = TeamBasicBtnState.TeamInfoBtn;
     this.SetBtnState();
     this.RefreshUI();
     this.UpadateAskForJoinList();
 }
예제 #2
0
 private void OnClickApplicationBtn(GameObject go)
 {
     if (this.currentState == TeamBasicBtnState.TeamApplicationBtn)
     {
         return;
     }
     this.currentState = TeamBasicBtnState.TeamApplicationBtn;
     this.SetBtnState();
     this.RefreshApplicationUI();
 }
예제 #3
0
 private void OnClickTeamInofoBtn(GameObject go)
 {
     if (this.currentState == TeamBasicBtnState.TeamInfoBtn)
     {
         return;
     }
     this.currentState = TeamBasicBtnState.TeamInfoBtn;
     this.SetBtnState();
     this.RefreshUI();
 }