Project1

标题: 有谁教教我怎样去除不需要的能力? [打印本页]

作者: shengfeng    时间: 2018-12-6 22:19
标题: 有谁教教我怎样去除不需要的能力?
在装备状态栏里去除魔攻  魔防  幸运  把HP加进去   在人物状态栏里一样去除魔攻 魔防  幸运
作者: 天浩    时间: 2018-12-7 08:47
Window_EquipStatus  50行,6.times {|i| draw_item(0, line_height * (1 + i), 2 + i) }  这里就是描绘属性。删掉它。加上。
draw_item(0,0, 0)
2.times {|i| draw_item(0, line_height * (1 + i), 2 + i) }
draw_item(0, line_height * 4, 6)
Window_Status 里也是一样
未测试~~~
作者: KB.Driver    时间: 2018-12-7 09:57
将这段代码插入
RUBY 代码复制
  1. class Window_Status < Window_Selectable
  2.   #--------------------------------------------------------------------------
  3.   # ● 绘制能力值
  4.   #--------------------------------------------------------------------------
  5.   def draw_parameters(x, y)
  6.     [0,1].each do |i|
  7.       draw_actor_param(@actor, x, y + line_height * i, i + 2)
  8.     end
  9.     draw_actor_param(@actor, x, y + line_height * 2, 6)
  10.   end
  11. end
  12.  
  13. class Window_EquipStatus < Window_Base
  14.   #--------------------------------------------------------------------------
  15.   # ● 刷新
  16.   #--------------------------------------------------------------------------
  17.   def refresh
  18.     contents.clear
  19.     draw_actor_name(@actor, 4, 0) if @actor
  20.     [0,1,2,3].each do |i|
  21.       draw_item(0, line_height * (1 + i), i)
  22.     end
  23.     draw_item(0, line_height * (1 + 4), 6)
  24.   end
  25. end










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