赞 | 287 |
VIP | 11 |
好人卡 | 74 |
积分 | 226 |
经验 | 281171 |
最后登录 | 2024-11-16 |
在线时间 | 9415 小时 |
Lv5.捕梦者 (暗夜天使) 只有笨蛋才会看到
- 梦石
- 1
- 星屑
- 21631
- 在线时间
- 9415 小时
- 注册时间
- 2012-6-19
- 帖子
- 7118
|
234790068 发表于 2015-11-19 17:23
谢谢回答,大概我的表达不够准确。我是想说有没有办法加这么一个条。不管在哪里啦,可以实现么? ...
你可以参考 Window_Base 中的draw_actor_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
复制代码 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)
绘制HP的文字
draw_current_and_max_values(x, y, width, actor.hp, actor.mhp, hp_color(actor), normal_color)
绘制当前HP和最大HP |
评分
-
查看全部评分
|