Guest User

Untitled

a guest
Jan 14th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rails 0.67 KB | None | 0 0
  1. class Scene_Battle
  2.  
  3.     #--------------------------------------------------------------------------
  4.   # * Basic Update Processing
  5.   #     main : Call from main update method
  6.   #--------------------------------------------------------------------------
  7.   def update_basic(main = false)
  8.     Graphics.update unless main     # Update game screen
  9.     Input.update unless main        # Update input information
  10.     $game_system.update             # Update timer
  11.     $game_troop.update              # Update enemy group
  12.     @spriteset.update               # Update sprite set
  13.     @message_window.update          # Update message window
  14.     @status_window.update
  15.   end
  16.  
  17. end
Add Comment
Please, Sign In to add comment