赞 | 90 |
VIP | 350 |
好人卡 | 311 |
积分 | 101 |
经验 | 150139 |
最后登录 | 2024-7-17 |
在线时间 | 5020 小时 |
Lv4.逐梦者 (版主) 无限の剣制
- 梦石
- 0
- 星屑
- 10074
- 在线时间
- 5020 小时
- 注册时间
- 2013-2-28
- 帖子
- 5030
|
本帖最后由 VIPArcher 于 2014-8-19 15:21 编辑
金币?你是说金币窗口的货币单位用图标显示吗?
那就这样
- class Window_Base < Window
- #--------------------------------------------------------------------------
- # ● 绘制货币数值(持有金钱之类的)
- #--------------------------------------------------------------------------
- def draw_currency_value(value, unit, x, y, width)
- cx = 24#text_size(unit).width
- change_color(normal_color)
- draw_text(x, y, width - cx - 2, line_height, value, 2)
- # change_color(system_color)
- # draw_text(x, y, width, line_height, unit, 2)
- draw_icon(361,x + width - 24,y)
- end
- end
复制代码 |
评分
-
查看全部评分
|