赞 | 0 |
VIP | 6 |
好人卡 | 8 |
积分 | 1 |
经验 | 2887 |
最后登录 | 2014-1-19 |
在线时间 | 116 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 116 小时
- 注册时间
- 2012-8-12
- 帖子
- 61
|
本帖最后由 吾不知 于 2012-8-26 21:05 编辑
Window_Base下def draw_actor_hp,draw_actor_mp,draw_actor_tp 将下面的 draw_gauge 句子注释掉!
#--------------------------------------------------------------------------
# ● 绘制 HP
#--------------------------------------------------------------------------
def draw_actor_hp(actor, x, y, width = 124)
#~ draw_gauge(x, y, width, actor.hp_rate, hp_gauge_color1, hp_gauge_color2)
change_color(system_color)
draw_text(x, y, 30, line_height, Vocab::hp_a)
draw_current_and_max_values(x, y, width, actor.hp, actor.mhp,
hp_color(actor), normal_color)
end
#--------------------------------------------------------------------------
# ● 绘制 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
#--------------------------------------------------------------------------
# ● 绘制 TP
#--------------------------------------------------------------------------
def draw_actor_tp(actor, x, y, width = 124)
#~ draw_gauge(x, y, width, actor.tp_rate, tp_gauge_color1, tp_gauge_color2)
change_color(system_color)
draw_text(x, y, 30, line_height, Vocab::tp_a)
change_color(tp_color(actor))
draw_text(x + width - 42, y, 42, line_height, actor.tp.to_i, 2)
end
|
|