|
鸦天狗的护盾血条不显示的问题,是冲突吗【rpg制作大师吧】_百度贴吧 (baidu.com)
这个帖子的兼容脚本:
- class Window_BattleStatusPart < Window_Base
- def draw_actor_hp(actor, x, y, width = 124)
- rates = [actor.hp_scroll_rate, actor.hp_rate]
- draw_gauge(x, y, width, rates.max, hp_scroll_base_color1(actor), hp_scroll_base_color2(actor))
- draw_gauge(x, y, width, rates.min, hp_gauge_color1, hp_gauge_color2, false)
- change_color(system_color)
- #------------------
- draw_actor_shield(actor, x + width * actor.draw_hp_rate , y, width)
- #------------------
- draw_text(x, y, 30, line_height, Vocab::hp_a)
- draw_current_and_max_values(x, y, width, actor.scroll_hp, actor.mhp,
- hp_color(actor), normal_color)
- end
- end
复制代码
|
|