赞 | 0 |
VIP | 1 |
好人卡 | 32 |
积分 | 1 |
经验 | 4462 |
最后登录 | 2012-1-15 |
在线时间 | 84 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 84 小时
- 注册时间
- 2010-10-10
- 帖子
- 62
|
本帖最后由 秋庭里香 于 2011-7-28 11:53 编辑
乱写了一个~~~- #==============================================================================
- # ■ Window_Command
- #------------------------------------------------------------------------------
- # 一般的命令选择行窗口。
- #==============================================================================
- class Window_Command2 < Window_Selectable
- #--------------------------------------------------------------------------
- # ● 初始化对像
- # width : 窗口的宽
- # commands : 命令字符串序列
- #--------------------------------------------------------------------------
- def initialize(width, commands)
- # 由命令的个数计算出窗口的高
- super(0, 0, commands.size * width + 32, 64)
- @item_max = commands.size
- @commands = commands
- @column_max = commands.size
- @save_width = width
- self.contents = Bitmap.new(@item_max * width,64 - 32)
- refresh
- self.index = 0
- end
- #--------------------------------------------------------------------------
- # ● 刷新
- #--------------------------------------------------------------------------
- def refresh
- self.contents.clear
- for i in 0...@item_max
- draw_item(i, normal_color)
- end
- end
- #--------------------------------------------------------------------------
- # ● 描绘项目
- # index : 项目编号
- # color : 文字色
- #--------------------------------------------------------------------------
- def draw_item(index, color)
- self.contents.font.color = color
- rect = Rect.new(@save_width / 4 + @save_width * index, 4, self.contents.width, 32)
- self.contents.fill_rect(rect, Color.new(0, 0, 0, 0))
- self.contents.draw_text(rect, @commands[index])
- end
- #--------------------------------------------------------------------------
- # ● 项目无效化
- # index : 项目编号
- #--------------------------------------------------------------------------
- def disable_item(index)
- draw_item(index, disabled_color)
- end
- #--------------------------------------------------------------------------
- # ● 更新光标矩形
- #--------------------------------------------------------------------------
- def update_cursor_rect
- self.cursor_rect.set(@index * @save_width - 4, 4, @save_width, 32)
- end
- end
复制代码 把这个脚本插入到Main前面,接着搜索——
@command_window = Window_Command.new(160, [s1, s2, s3, s4, s5, s6])
替换为——
@command_window = Window_Command2.new(101.5, [s1, s2, s3, s4, s5, s6])
@command_window.z = 1000
然后就OK了~~
另外我记得有一个华丽菜单的脚本里也有这个东西,而且其他窗口都排版好了。 |
|