Project1

标题: 如何用脚本来描绘出状态图标和状态名 [打印本页]

作者: 吸血鬼之妻    时间: 2012-9-2 19:53
标题: 如何用脚本来描绘出状态图标和状态名
这是自己写的脚本,有问题。
  1. class Window_States < Window_Base
  2.   #--------------------------------------------------------------------------
  3.   # * 初始化
  4.   #     actor : 主角
  5.   #--------------------------------------------------------------------------
  6.   def initialize
  7.     super(0, 0, 544, 416)
  8.     refresh
  9.   end
  10. #--------------------------------------------------------------------------
  11.   # ● 刷新
  12.   #--------------------------------------------------------------------------
  13.   def refresh
  14.     self.contents.clear
  15.     draw_icon_status(32, 300)
  16.     draw_intrudoces(32, 300)
  17.   end
  18.   #--------------------------------------------------------------------------
  19.   # ● 狀態描繪
  20.   #--------------------------------------------------------------------------
  21.   def  draw_icon_status(x, y)
  22.     self.contents.font.color = system_color
  23.     self.contents.draw_text(x, y + WLH * 0, 180, WLH, icon_status)
  24.     self.contents.draw_text(x, y + WLH * 1, 180, WLH, icon_status)
  25. end
复制代码
可是遇到问题了,不知道怎么描绘图标和状态名
想要实现这样子的效果

求助dsu_plus_rewardpost_czw
作者: limaolinghu    时间: 2012-9-2 20:26
  def refresh
    self.contents.clear
    draw_icon_status(32, 300)
    draw_intrudoces(32, 300)    // 这个的实现是什么,注意,你这个函数的参数和上一个一样,小心别画到一起了
  end
  #--------------------------------------------------------------------------
  # ● 狀態描繪
  #--------------------------------------------------------------------------
  def  draw_icon_status(x, y)
    self.contents.font.color = system_color
    self.contents.draw_text(x, y + WLH * 0, 180, WLH, icon_status)  //
    self.contents.draw_text(x, y + WLH * 1, 180, WLH, icon_status)  //这两句一样,只是一个画第一行,一个画第二行,出来的效果就是一个图标画两行,另外我没看到icon_status的定义,难道不会崩溃吗?
end
作者: 吸血鬼之妻    时间: 2012-9-3 18:59
limaolinghu 发表于 2012-9-2 20:26
def refresh
    self.contents.clear
    draw_icon_status(32, 300)

要怎么定义icon_status
作者: 吸血鬼之妻    时间: 2012-9-7 18:20
@limaolinghu
请问要怎么写脚本




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1