Advertisement
deadx2

Untitled

Sep 27th, 2017
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.50 KB | None | 0 0
  1.     def OnUpdate(self):
  2.         app.UpdateGame()
  3.         if self.SkillActivatedInfo == 1:
  4.             if self.SkillEffectUpdate <= time.clock():
  5.                 self.SkillEffectUpdate = time.clock() + 1.5
  6.                 self.UpdateSkillEffect()
  7.                
  8.             self.UpdateSkillTimeBar()
  9.        
  10.         if self.mapNameShower.IsShow():
  11.             self.mapNameShower.Update()
  12.        
  13.         if app.ENABLE_TITLE_SYSTEM:
  14.             self.interface.wndTitle.OnUpdate()
  15.  
  16.     #   if self.isShowDebugInfo:
  17.     #       self.UpdateDebugInfo()
  18.  
  19.         if self.enableXMasBoom:
  20.             self.__XMasBoom_Update()
  21.  
  22.         self.interface.BUILD_OnUpdate()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement