赞 | 0 |
VIP | 0 |
好人卡 | 3 |
积分 | 1 |
经验 | 4293 |
最后登录 | 2014-8-3 |
在线时间 | 41 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 41 小时
- 注册时间
- 2010-7-10
- 帖子
- 111
|
super(x,y,宽度,高度)- #==============================================================================
- # ■ Window_MapName
- #------------------------------------------------------------------------------
- # 显示地图名称的窗口。
- #==============================================================================
- class Window_MapName < Window_Base
- #--------------------------------------------------------------------------
- # ● 初始化对象
- #--------------------------------------------------------------------------
- def initialize
- super((Graphics.width-window_width) / 2, Graphics.height-line_height, window_width, fitting_height(1))
- self.opacity = 0
- self.contents_opacity = 0
- @show_count = 0
- refresh
- end
- #--------------------------------------------------------------------------
- # ● 获取窗口的宽度
- #--------------------------------------------------------------------------
- def window_width
- return Graphics.width
- end
复制代码 |
|