赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 569 |
最后登录 | 2012-7-13 |
在线时间 | 7 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 7 小时
- 注册时间
- 2009-1-1
- 帖子
- 263
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
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, 30, 120, 32, "声望") #描绘声望字样
- self.contents.draw_text(4, 0, 120, 32, "善恶")
- self.contents.font.color = normal_color
- self.contents.draw_text(4,2,120,32, $game_variables[3].to_s,2)#描绘3号
- self.contents.draw_text(4,30,120,32, $game_variables[2].to_s,2) #描绘2号变量,可以自己改~~
- end
- end
复制代码
默认菜单使用效果
加强菜单使用效果 |
|