加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
我写了个描述窗口的脚本但是无法显示出物品描述,
因为我在物品描述下还会加个图标什么的,所以有这个写法
请问有什么地方写得不对
#============================================================================== # ** 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
|