赞 | 0 |
VIP | 84 |
好人卡 | 1 |
积分 | 1 |
经验 | 140542 |
最后登录 | 2016-5-2 |
在线时间 | 195 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 147
- 在线时间
- 195 小时
- 注册时间
- 2009-10-10
- 帖子
- 435
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
- class Text_Window < Window_Base
- def initialize
- super(-15, -16, 740, 580)
- self.contents = Bitmap.new(width - 32, height - 32)
- self.opacity = 0
- self.z = 999
- self.visible = true
- end
- def update
- draw_value(209-188, 8)
- end
- def draw_value(x,y)
- self.contents.font.size = 18 # 文字的字号
- self.contents.draw_text(x+10, y, 410, 904, $game_party.item_number(1).to_s, 1)
- self.contents.draw_text(x+10, y, 488, 904, $game_party.item_number(2).to_s, 1)
- self.contents.draw_text(x+10, y, 566, 904, $game_party.item_number(3).to_s, 1)
- self.contents.draw_text(x+10, y, 644, 904, $game_party.item_number(4).to_s, 1)
- end
- end
复制代码 |
|