赞 | 90 |
VIP | 350 |
好人卡 | 311 |
积分 | 101 |
经验 | 150139 |
最后登录 | 2024-7-17 |
在线时间 | 5020 小时 |
Lv4.逐梦者 (版主) 无限の剣制
- 梦石
- 0
- 星屑
- 10074
- 在线时间
- 5020 小时
- 注册时间
- 2013-2-28
- 帖子
- 5030
|
本帖最后由 VIPArcher 于 2015-6-5 21:31 编辑
KB.Driver 发表于 2015-6-5 21:01
@VIPArcher
现在界面是这样子……TP的数字相比HP、MP还是感觉很不正常啊…… - class Window_Base < Window
- #--------------------------------------------------------------------------
- # ● EXP の描画
- #--------------------------------------------------------------------------
- def draw_actor_exp(actor, x, y, display = true, width = 122) #修改 原:244
- this_level = actor.exp - actor.past_level_exp
- next_level = actor.next_level_exp - actor.past_level_exp
- draw_gauge(x, y, width, actor.exp_rate, exp_gauge_color1, exp_gauge_color2)
- change_color(system_color)
- if display
- draw_text(x, y, 30, line_height, "EXP")
- change_color(normal_color)
- draw_text(x, y, width,line_height, this_level ,2)
- end
- end
- end
复制代码 未测试 |
评分
-
查看全部评分
|