Initial import
This commit is contained in:
35
Scripts/RPG/Game_Variables.rb
Normal file
35
Scripts/RPG/Game_Variables.rb
Normal file
@@ -0,0 +1,35 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
#==============================================================================
|
||||
# ** Game_Variables
|
||||
#------------------------------------------------------------------------------
|
||||
# This class handles variables. It's a wrapper for the built-in class "Array."
|
||||
# The instance of this class is referenced by $game_variables.
|
||||
#==============================================================================
|
||||
|
||||
class Game_Variables
|
||||
#--------------------------------------------------------------------------
|
||||
# * Object Initialization
|
||||
#--------------------------------------------------------------------------
|
||||
def initialize
|
||||
@data = []
|
||||
end
|
||||
#--------------------------------------------------------------------------
|
||||
# * Get Variable
|
||||
#--------------------------------------------------------------------------
|
||||
def [](variable_id)
|
||||
@data[variable_id] || 0
|
||||
end
|
||||
#--------------------------------------------------------------------------
|
||||
# * Set Variable
|
||||
#--------------------------------------------------------------------------
|
||||
def []=(variable_id, value)
|
||||
@data[variable_id] = value
|
||||
on_change
|
||||
end
|
||||
#--------------------------------------------------------------------------
|
||||
# * Processing When Setting Variables
|
||||
#--------------------------------------------------------------------------
|
||||
def on_change
|
||||
$game_map.need_refresh = true
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user