예제 #1
0
파일: CCreature_UI.cs 프로젝트: mengtest/fs
 public void UpdateUI_CD(int index, float time, float maxTime)
 {
     // 如果是主角,坐骑主人是主角
     if (IsMaster())
     {
         JoyStickModule js = (JoyStickModule)LayoutMgr.Inst.GetLogicModule(LogicModuleIndex.eLM_PanelJoyStick);
         if (js.IsShow())
         {
             js.SetCD(index, time, maxTime);
         }
     }
 }