赞 | 0 |
VIP | 0 |
好人卡 | 6 |
积分 | 1 |
经验 | 6488 |
最后登录 | 2013-11-13 |
在线时间 | 79 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 79 小时
- 注册时间
- 2007-6-23
- 帖子
- 154
|
本帖最后由 fangyc 于 2013-8-8 20:14 编辑
width就是宽
x是位置
我自己微调过了,你是要这样的效果吧?
全部显示下来需要调整下血条的长度
还有24行和35行的 x -= 35 这里最好不要这么写,可以在外面调用的地方就把X坐标调整一下
我的代码如下- #--------------------------------------------------------------------------
- # ● 以 当前值/最大值 这样的分数形式绘制当前值和最大值
- # current : 当前值
- # max : 最大值
- # color1 : 当前值的颜色
- # color2 : 最大值的颜色
- #--------------------------------------------------------------------------
- def draw_current_and_max_values(x, y, width, current, max, color1, color2)
- change_color(color1)
- xr = x + width
- if width < 96
- draw_text(xr - 40, y, 42, line_height, current, 2)
- else
- draw_text(xr - 132, y, 64, line_height, "99999", 2)
- change_color(color2)
- draw_text(xr - 72, y, 12, line_height, "/", 2)
- draw_text(xr - 96, y, 96, line_height, "99999", 2)
- end
- end
- #--------------------------------------------------------------------------
- # ● 绘制 HP
- #--------------------------------------------------------------------------
- def draw_actor_hp(actor, x, y, width = 152)
- x -= 32
- 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 = 152)
- x -= 32
- 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
复制代码 |
评分
-
查看全部评分
|