赞 | 0 |
VIP | 1 |
好人卡 | 1 |
积分 | 1 |
经验 | 1826 |
最后登录 | 2012-6-25 |
在线时间 | 25 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 25 小时
- 注册时间
- 2008-11-8
- 帖子
- 145
|
★Window_Gold
#==============================================================================
# ■ Window_Gold
#------------------------------------------------------------------------------
# 显示金钱的窗口。
#==============================================================================
class Window_Gold < Window_Base
#--------------------------------------------------------------------------
# ● 初始化窗口
#--------------------------------------------------------------------------
def initialize
super(0, 0, 160, 64)
self.contents = Bitmap.new(width - 32, height - 32)
refresh
end
#--------------------------------------------------------------------------
# ● 刷新
#--------------------------------------------------------------------------
def refresh
self.contents.clear
cx = contents.text_size($data_system.words.gold).width
self.contents.font.color = Color.new(64,70,124,255)
self.contents.font.size = 18
self.contents.draw_text(4, 0, 120-cx-2, 32, $game_party.gold.to_s, 1)
end
end |
|