#==============================================================================
# ** Window_MapStatus
#==============================================================================
class Window_MapStatus< Window_Base
#----------------------------------------------------------------------------
# * 初始化
#----------------------------------------------------------------------------
def initialize
super(420, 350, 105, 50)
refresh
end
#----------------------------------------------------------------------------
# * 刷新画面
#----------------------------------------------------------------------------
def update
super
refresh
end
#----------------------------------------------------------------------------
# * 更新内容
#----------------------------------------------------------------------------
def refresh
self.contents.clear
self.contents.font.bold = true
self.contents.font.color = Color.new(16, 108,143)
count ="第" + "#{$game_troop.turn_count}" + "回合"
#count = "#{$game_troop.turn_count}"
self.contents.font.bold = false
# draw_text(0,0,20,30,count)
draw_text(0,0,100,30,count)
end
end
#==============================================================================
# ** Window_MapStatus
#==============================================================================
class Window_MapStatus< Window_Base
#----------------------------------------------------------------------------
# * 初始化
#----------------------------------------------------------------------------
def initialize
super(420, 350, 105, 50)
refresh
end
#----------------------------------------------------------------------------
# * 刷新画面
#----------------------------------------------------------------------------
def update
super
refresh
end
#----------------------------------------------------------------------------
# * 更新内容
#----------------------------------------------------------------------------
def refresh
self.contents.clear
self.contents.font.bold = true
self.contents.font.color = Color.new(16, 108,143)
count ="第" + "#{$game_troop.turn_count}" + "回合"
#count = "#{$game_troop.turn_count}"
self.contents.font.bold = false
# draw_text(0,0,20,30,count)
draw_text(0,0,100,30,count)
end
end