赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 163587 |
最后登录 | 2020-5-5 |
在线时间 | 41 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 60
- 在线时间
- 41 小时
- 注册时间
- 2008-3-5
- 帖子
- 2072
|
window_base里
def draw_actor_exp(actor, x, y,type = 0)
self.contents.font.color = system_color
self.contents.draw_text(x, y, 48, 32, "EXP")
self.contents.font.color = normal_color
case type
when 0
self.contents.draw_text(x - 10, y, 84, 32, actor.now_exp.to_s, 2)
self.contents.draw_text(x + 74, y, 12, 32, "/", 1)
self.contents.draw_text(x + 86, y, 84, 32, actor.next_exp.to_s)
when 1
exp = actor.now_exp/actor.next_exp
self.contents.draw_text(x + 86, y, 84, 32, exp.to_s + "%")
end
end 系统信息:本贴由本区版主认可为正确答案,66RPG感谢您的热情解答~ |
|