赞 | 0 |
VIP | 33 |
好人卡 | 1 |
积分 | 1 |
经验 | 214727 |
最后登录 | 2017-9-16 |
在线时间 | 75 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 75 小时
- 注册时间
- 2007-6-25
- 帖子
- 2276
|
“Window_Base”
143行
self.contents.draw_text(x, y, 32, 32, "Lv")
200多行
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感谢您的热情解答~ |
|