#==============================================================================
# ■ Window_Douzhi
#------------------------------------------------------------------------------
# 菜单画面显示剩余遇敌步数的窗口。
#==============================================================================
class Window_Yudi < Window_Base
#--------------------------------------------------------------------------
# ● 初始化对像
#--------------------------------------------------------------------------
def initialize
super(0, 0, 160, 96)
self.contents = Bitmap.new(width - 32, height - 32)
refresh
end
#--------------------------------------------------------------------------
# ● 刷新
#--------------------------------------------------------------------------
def refresh
self.contents.clear
self.contents.font.color = system_color
self.contents.draw_text(4, 0, 120, 32, "剩余步数:")
self.contents.font.color = normal_color
self.contents.draw_text(4, 32, 120, 32, $game_player.encounter_count.to_s, 2)
end
end
#==============================================================================
# ■ Window_Douzhi
#------------------------------------------------------------------------------
# 菜单画面显示剩余遇敌步数的窗口。
#==============================================================================
class Window_Yudi < Window_Base
#--------------------------------------------------------------------------
# ● 初始化对像
#--------------------------------------------------------------------------
def initialize
super(0, 0, 160, 96)
self.contents = Bitmap.new(width - 32, height - 32)
refresh
end
#--------------------------------------------------------------------------
# ● 刷新
#--------------------------------------------------------------------------
def refresh
self.contents.clear
self.contents.font.color = system_color
self.contents.draw_text(4, 0, 120, 32, "剩余步数:")
self.contents.font.color = normal_color
self.contents.draw_text(4, 32, 120, 32, $game_player.encounter_count.to_s, 2)
end
end