赞 | 0 |
VIP | 0 |
好人卡 | 3 |
积分 | 1 |
经验 | 4293 |
最后登录 | 2014-8-3 |
在线时间 | 41 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 41 小时
- 注册时间
- 2010-7-10
- 帖子
- 111
|
- #==============================================================================
- # ■ Window_Info
- #------------------------------------------------------------------------------
- # 显示当前信息的窗口。
- #==============================================================================
- class Window_Steps < Window_Base
- #--------------------------------------------------------------------------
- # ● 初始化对像
- #--------------------------------------------------------------------------
- def initialize
- super(0, 0, window_width, fitting_height(1))
- refresh
- end
- #--------------------------------------------------------------------------
- # ● 获取窗口的宽度
- #--------------------------------------------------------------------------
- def window_width
- return 160
- end
- #--------------------------------------------------------------------------
- # ● 刷新
- #--------------------------------------------------------------------------
- def refresh
- self.contents.clear
- self.contents.font.color = normal_color
- draw_text(4, 0, 120, fitting_height(1)-fitting_height(1)/2,$game_map.display_name, 1)
- end
- end
复制代码 我做的一个MapInfo窗口,在菜单中显示。
如何显示当前地图的宽度高度????
曾做过这个代码:- @textint=Game_Map.width
- @[email protected]_s()
- draw_text(4, 0, 120, fitting_height(1)-fitting_height(1)/2,@text, 1)
复制代码 报错!!NoMethodError!!!!
Undefined method 'width' for Game_Map::Class
谁能够在此代码上修改一下。。。 |
|