赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 245 |
最后登录 | 2020-5-5 |
在线时间 | 0 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 55
- 在线时间
- 0 小时
- 注册时间
- 2006-8-3
- 帖子
- 5
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
#==============================================================================
# ■ Window_Space
#------------------------------------------------------------------------------
# 顯示地名視窗。
#==============================================================================
class Window_Space < Window_Base
#--------------------------------------------------------------------------
# ● 實體變數宣告
#--------------------------------------------------------------------------
#attr_accessor :autoclosetime
#--------------------------------------------------------------------------
# ● 初始化視窗
#--------------------------------------------------------------------------
def initialize
super(220, 5, 200, 66)
self.contents = Bitmap.new(width - 32, height - 32)
self.back_opacity = 160
refresh
end
#--------------------------------------------------------------------------
# ● 更新
#--------------------------------------------------------------------------
def refresh
self.contents.clear
if $town_name != nil
cx = contents.text_size($data_system.words.gold).width
self.contents.font.color = normal_color
self.contents.draw_text(2, 0, 170-cx-2, 32, $town_name, 1)
end
end
end
#=====================以下非程式碼======================
我的問題是...我不會設定消失時間...雖然好像會自動消失XD
學東西還是要學完整點...
有哪位高手可以幫忙一下呢?
|
|