Project1

标题: 如何去除游戏界面及战斗界面的mp槽! [打印本页]

作者: Sence    时间: 2015-6-27 23:35
标题: 如何去除游戏界面及战斗界面的mp槽!
本帖最后由 Sence 于 2015-6-27 23:40 编辑

如图


希望达成 的效果 是 去掉 下面 那个 黑色的 mp 槽,以及 把上面 的 hp的槽 的宽度 调整的稍微 高些。
作者: taroxd    时间: 2015-6-28 06:24
RUBY 代码复制
  1. class Window_Base
  2.   def draw_actor_mp(*)
  3.   end
  4. end


未测试。另外,在 draw_actor_hp 那里有一个 width 参数,修改那个值即可
作者: Sence    时间: 2015-6-28 07:39
taroxd 发表于 2015-6-28 06:24
class Window_Base
  def draw_actor_mp(*)
  end

状态栏 mp 消失了



但是 进入 到 战斗画面 时 mp 条 依旧 存在






作者: taroxd    时间: 2015-6-28 08:01
Sence 发表于 2015-6-28 07:39
状态栏 mp 消失了

我还以为就是要全删呢…… 那就把上面的脚本复制几遍,然后把 Window_Base 改成你要删掉 mp 条的窗口。
脚本里应该都有注释 Window_XXXX 对应哪个窗口的。
作者: Sence    时间: 2015-6-28 08:08
taroxd 发表于 2015-6-28 08:01
我还以为就是要全删呢…… 那就把上面的脚本复制几遍,然后把 Window_Base 改成你要删掉 mp 条的窗口。
...

就是 要把 mp 删掉 啊

Window_Base里 只找到 这个

def draw_actor_mp
还是 只能 消除掉 状态栏里的 mp槽

  # ● 绘制 MP
  #--------------------------------------------------------------------------
  def draw_actor_mp(actor, x, y, width = 124)
    draw_gauge(x, y, width, actor.mp_rate, mp_gauge_color1, mp_gauge_color2)
    change_color(system_color)
    draw_text(x, y, 30, line_height, Vocab::mp_a)
    draw_current_and_max_values(x, y, width, actor.mp, actor.mmp,
      mp_color(actor), normal_color)
  end
作者: Sence    时间: 2015-6-28 08:33
Sence 发表于 2015-6-28 08:08
就是 要把 mp 删掉 啊

Window_Base里 只找到 这个

在脚本栏中找到了一个

名称为

Window_BattleLog

其中 对应mp 的注释 只有


#--------------------------------------------------------------------------
  # ● 显示 MP 伤害
  #--------------------------------------------------------------------------
  def display_mp_damage(target, item)
    return if target.dead? || target.result.mp_damage == 0
    Sound.play_recovery if target.result.mp_damage < 0
    add_text(target.result.mp_damage_text)
    wait
  end

复制上面的脚本
后 改成

class Window_Base
  def draw_actor_mp(*)
  end
end

class Window_Base
  def display_mp_damage(*)
  end
end

但是 战斗 时的mp 槽 并没有 消失
作者: VIPArcher    时间: 2015-6-28 10:08
标题: RE: 如何去除游戏界面及战斗界面的mp槽!
本帖最后由 VIPArcher 于 2015-6-28 10:09 编辑
Sence 发表于 2015-6-28 08:33
但是 战斗 时的mp 槽 并没有 消失


那是因为你用的战斗脚本不是默认的脚本,去你现在用的战斗状态栏的脚本里把绘制MP的部分去掉就好了
作者: Sence    时间: 2015-6-28 15:30
VIPArcher 发表于 2015-6-28 10:08
那是因为你用的战斗脚本不是默认的脚本,去你现在用的战斗状态栏的脚本里把绘制MP的部分去掉就好了 ...

的确是 这个原因,已修改,谢谢。




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