设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索
查看: 1749|回复: 3
打印 上一主题 下一主题

[已经解决] 怎么把菜单按键横向排布

 关闭 [复制链接]

Lv1.梦旅人

梦石
0
星屑
50
在线时间
40 小时
注册时间
2011-7-7
帖子
39
跳转到指定楼层
1
发表于 2011-7-28 10:47:40 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
比如把按键摆成“物品”“装备”“状态”“存档”“结束游戏”
而不是竖状的“物品”“
                  ”“装备”
                   “状态”
                   “存档”
                   “结束游戏”  

Lv1.梦旅人

梦石
0
星屑
50
在线时间
84 小时
注册时间
2010-10-10
帖子
62
2
发表于 2011-7-28 11:25:25 | 只看该作者
本帖最后由 秋庭里香 于 2011-7-28 11:53 编辑

乱写了一个~~~
  1. #==============================================================================
  2. # ■ Window_Command
  3. #------------------------------------------------------------------------------
  4. #  一般的命令选择行窗口。
  5. #==============================================================================

  6. class Window_Command2 < Window_Selectable
  7.   #--------------------------------------------------------------------------
  8.   # ● 初始化对像
  9.   #     width    : 窗口的宽
  10.   #     commands : 命令字符串序列
  11.   #--------------------------------------------------------------------------
  12.   def initialize(width, commands)
  13.     # 由命令的个数计算出窗口的高
  14.     super(0, 0, commands.size * width + 32, 64)
  15.     @item_max = commands.size
  16.     @commands = commands
  17.     @column_max = commands.size
  18.     @save_width = width
  19.     self.contents = Bitmap.new(@item_max * width,64 - 32)
  20.     refresh
  21.     self.index = 0
  22.   end
  23.   #--------------------------------------------------------------------------
  24.   # ● 刷新
  25.   #--------------------------------------------------------------------------
  26.   def refresh
  27.     self.contents.clear
  28.     for i in 0...@item_max
  29.       draw_item(i, normal_color)
  30.     end
  31.   end
  32.   #--------------------------------------------------------------------------
  33.   # ● 描绘项目
  34.   #     index : 项目编号
  35.   #     color : 文字色
  36.   #--------------------------------------------------------------------------
  37.   def draw_item(index, color)
  38.     self.contents.font.color = color
  39.     rect = Rect.new(@save_width / 4 + @save_width * index, 4, self.contents.width, 32)
  40.     self.contents.fill_rect(rect, Color.new(0, 0, 0, 0))
  41.     self.contents.draw_text(rect, @commands[index])
  42.   end
  43.   #--------------------------------------------------------------------------
  44.   # ● 项目无效化
  45.   #     index : 项目编号
  46.   #--------------------------------------------------------------------------
  47.   def disable_item(index)
  48.     draw_item(index, disabled_color)
  49.   end
  50.   #--------------------------------------------------------------------------
  51.   # ● 更新光标矩形
  52.   #--------------------------------------------------------------------------
  53.   def update_cursor_rect
  54.     self.cursor_rect.set(@index * @save_width - 4, 4, @save_width, 32)
  55.   end
  56. 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了~~

另外我记得有一个华丽菜单的脚本里也有这个东西,而且其他窗口都排版好了。
因为另一个我,所以,要抛弃过去了。
回复

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
50
在线时间
40 小时
注册时间
2011-7-7
帖子
39
3
 楼主| 发表于 2011-7-28 11:41:05 | 只看该作者
秋庭里香 发表于 2011-7-28 11:25
乱写了一个~~~把这个脚本插入到Main前面,接着搜索——
    @command_window = Window_Command.new(160, [s ...

那在标题那里的呢?
回复

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
50
在线时间
84 小时
注册时间
2010-10-10
帖子
62
4
发表于 2011-7-28 11:58:47 | 只看该作者
本帖最后由 秋庭里香 于 2011-7-28 11:59 编辑

上面那个脚本有一个小bug,现在更新下。
  1. #==============================================================================
  2. # ■ Window_Command
  3. #------------------------------------------------------------------------------
  4. #  一般的命令选择行窗口。
  5. #==============================================================================

  6. class Window_Command2 < Window_Selectable
  7.   #--------------------------------------------------------------------------
  8.   # ● 初始化对像
  9.   #     width    : 窗口的宽
  10.   #     commands : 命令字符串序列
  11.   #--------------------------------------------------------------------------
  12.   def initialize(width, commands)
  13.     # 由命令的个数计算出窗口的高
  14.     super(0, 0, commands.size * width + 32, 64)
  15.     @item_max = commands.size
  16.     @commands = commands
  17.     @column_max = commands.size
  18.     @save_width = width
  19.     self.contents = Bitmap.new(@item_max * width,64 - 32)
  20.     refresh
  21.     self.index = 0
  22.   end
  23.   #--------------------------------------------------------------------------
  24.   # ● 刷新
  25.   #--------------------------------------------------------------------------
  26.   def refresh
  27.     self.contents.clear
  28.     for i in 0...@item_max
  29.       draw_item(i, normal_color)
  30.     end
  31.   end
  32.   #--------------------------------------------------------------------------
  33.   # ● 描绘项目
  34.   #     index : 项目编号
  35.   #     color : 文字色
  36.   #--------------------------------------------------------------------------
  37.   def draw_item(index, color)
  38.     self.contents.font.color = color
  39.     rect = Rect.new(@save_width / 4 + @save_width * index, 4, @save_width - 8, 32)
  40.     self.contents.fill_rect(rect, Color.new(0, 0, 0, 0))
  41.     self.contents.draw_text(rect, @commands[index])
  42.   end
  43.   #--------------------------------------------------------------------------
  44.   # ● 项目无效化
  45.   #     index : 项目编号
  46.   #--------------------------------------------------------------------------
  47.   def disable_item(index)
  48.     draw_item(index, disabled_color)
  49.   end
  50.   #--------------------------------------------------------------------------
  51.   # ● 更新光标矩形
  52.   #--------------------------------------------------------------------------
  53.   def update_cursor_rect
  54.     self.cursor_rect.set(@index * @save_width - 4, 4, @save_width, 32)
  55.   end
  56. end
复制代码
标题的话,搜索 @command_window = Window_Command.new(192, [s1, s2, s3])
改为 @command_window = Window_Command2.new(100, [s1, s2, s3])就行了,另外这里的100可以修改,它是一个控制宽度的参数。
因为另一个我,所以,要抛弃过去了。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2024-11-30 07:44

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表