Project1

标题: 求个TP显示改良脚本 [打印本页]

作者: 空の翼    时间: 2013-2-1 16:16
标题: 求个TP显示改良脚本
本帖最后由 空の翼 于 2013-2-1 19:46 编辑

在菜单人物状态中显示TP
RUBY 代码复制
  1. class Window_Base
  2.   #--------------------------------------------------------------------------
  3.   # ● 绘制简单的状态
  4.   #--------------------------------------------------------------------------
  5.   def draw_actor_simple_status(actor, x, y)
  6.     draw_actor_name(actor, x, y)
  7.     draw_actor_level(actor, x, y + line_height * 1)
  8.     draw_actor_icons(actor, x, y + line_height * 2)
  9.     draw_actor_class(actor, x + 120, y - line_height * 0.5)
  10.     draw_actor_hp(actor, x + 120, y + line_height * 0.5) #绘制HP,在原有位置上略调整
  11.     draw_actor_mp(actor, x + 120, y + line_height * 1.5) #绘制MP,在原有位置上略调整
  12.     draw_actor_tp(actor, x + 120, y + line_height * 2.5)  #绘制TP
  13.   end
  14. end

想请大大们帮忙改改这个简单的TP绘制。
需要是在如果没有附加TP保留的特征时候,TP条变成:no reserve 之类的文字
作者: Sion    时间: 2013-2-1 18:00
  1. class Window_Base
  2.   def draw_actor_simple_status(actor, x, y)
  3.     draw_actor_name(actor, x, y)
  4.     draw_actor_level(actor, x, y + line_height * 1)
  5.     draw_actor_icons(actor, x, y + line_height * 2)
  6.     draw_actor_class(actor, x + 120, y - line_height * 0.5)
  7.     draw_actor_hp(actor, x + 120, y + line_height * 0.5) #绘制HP,在原有位置上略调整
  8.     draw_actor_mp(actor, x + 120, y + line_height * 1.5) #绘制MP,在原有位置上略调整
  9.     if actor.preserve_tp?
  10.       draw_actor_tp(actor, x + 120, y + line_height * 2.5)  #绘制TP
  11.     else
  12.       draw_no_reserve(actor, x + 120, y + line_height * 2.5)
  13.     end
  14.   end
  15.   def draw_no_reserve(actor, x, y, width = 112)
  16.     draw_text(x, y, width, line_height, "no reserve") # 修改显示文字
  17.   end
  18. end
复制代码





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