27 lines
1.1 KiB
Ruby
27 lines
1.1 KiB
Ruby
#==============================================================================
|
|
# ** Window_Steps
|
|
#------------------------------------------------------------------------------
|
|
# This window displays step count on the menu screen.
|
|
#==============================================================================
|
|
|
|
class Window_Steps < Window_Base
|
|
#--------------------------------------------------------------------------
|
|
# * Object Initialization
|
|
#--------------------------------------------------------------------------
|
|
def initialize
|
|
super(0, 0, 160, 96)
|
|
self.contents = Bitmap.new(width - 32, height - 32)
|
|
refresh
|
|
end
|
|
#--------------------------------------------------------------------------
|
|
# * Refresh
|
|
#--------------------------------------------------------------------------
|
|
def refresh
|
|
self.contents.clear
|
|
self.contents.font.color = system_color
|
|
self.contents.draw_text(4, 0, 120, 32, "Step Count")
|
|
self.contents.font.color = normal_color
|
|
self.contents.draw_text(4, 32, 120, 32, $game_party.steps.to_s, 2)
|
|
end
|
|
end
|