예제 #1
0
 private void Update()
 {
     lobbyChat.Update();
     messenger.Update();
     mirror.Update();
     lobbyTools.Update();
     channelLabel.Update();
     equipmentFrm.Update();
     shopFrm.Update();
     briefingPanel.Update();
     briefingPanelIndividual.Update();
     briefingPanelDefense.Update();
     deltaTime += Time.deltaTime;
     if (deltaTime > 0.5f)
     {
         deltaTime = 0f;
         dotCount++;
         if (dotCount > 3)
         {
             dotCount = 0;
         }
     }
     DoMasterKick();
     FindMatchTeamMember();
 }
 private void Update()
 {
     lobbyChat.Update();
     messenger.Update();
     mirror.Update();
     lobbyTools.Update();
     channelLabel.Update();
     equipmentFrm.Update();
     shopFrm.Update();
     briefingPanel.Update();
 }
 private void Update()
 {
     lobbyChat.Update();
     messenger.Update();
     mirror.Update();
     lobbyTools.Update();
     channelLabel.Update();
     equipmentFrm.Update();
     shopFrm.Update();
     briefingPanel.Update();
     deltaTime += Time.deltaTime;
     if (deltaTime > 0.5f)
     {
         deltaTime = 0f;
         Squad curSquad = SquadManager.Instance.CurSquad;
         if (curSquad != null && MyInfoManager.Instance.ClanSeq < 0)
         {
             OnClanExiled();
         }
     }
 }