#==============================================================================
# ** Window_Help
#------------------------------------------------------------------------------
# 本動態説明視窗用來及時顯示技能和物品的說明。
#==============================================================================
class Window_Help0 < Window_Base
#--------------------------------------------------------------------------
# * 物件初始化
#--------------------------------------------------------------------------
def initialize
super(0, 0, 320, WLH + 56) #更改
end
#--------------------------------------------------------------------------
# * 設置文本
# text : 顯示於視窗中的字串
# align : 對齊方式(0為左對齊,1為劇中,二為右對齊)
#--------------------------------------------------------------------------
def help0
self.contents.clear
self.contents.font.color = normal_color
self.contents.draw_text(4, 0, self.width - 40, WLH, item.description)
end
end
#==============================================================================
# ** Window_Help
#------------------------------------------------------------------------------
# 本動態説明視窗用來及時顯示技能和物品的說明。
#==============================================================================
class Window_Help0 < Window_Base
#--------------------------------------------------------------------------
# * 物件初始化
#--------------------------------------------------------------------------
def initialize
super(0, 0, 320, WLH + 56) #更改
end
#--------------------------------------------------------------------------
# * 設置文本
# text : 顯示於視窗中的字串
# align : 對齊方式(0為左對齊,1為劇中,二為右對齊)
#--------------------------------------------------------------------------
def help0
self.contents.clear
self.contents.font.color = normal_color
self.contents.draw_text(4, 0, self.width - 40, WLH, item.description)
end
end