赞 | 45 |
VIP | 0 |
好人卡 | 2 |
积分 | 136 |
经验 | 67210 |
最后登录 | 2024-11-11 |
在线时间 | 3850 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 13614
- 在线时间
- 3850 小时
- 注册时间
- 2013-7-18
- 帖子
- 2310
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
步数窗口里改为其他,比如声望什么的....就是一个变量,怎么改呢....- #==============================================================================
- # ■ Window_Steps
- #------------------------------------------------------------------------------
- # 菜单画面显示步数的窗口。
- #==============================================================================
- class Window_Steps < Window_Base
- #--------------------------------------------------------------------------
- # ● 初始化对像
- #--------------------------------------------------------------------------
- def initialize
- super(0, 0, 160, 96)
- self.contents = Bitmap.new(width - 32, height - 32)
- refresh
- end
- #--------------------------------------------------------------------------
- # ● 刷新
- #--------------------------------------------------------------------------
- def refresh
- self.contents.clear
- self.contents.font.color = system_color
- self.contents.draw_text(4, 0, 120, 32, "步数")
- self.contents.font.color = normal_color
- self.contents.draw_text(4, 32, 120, 32, $game_party.steps.to_s, 2)
- end
- end
复制代码 |
|