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

Project1

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

[已经解决] 求解如何做到横向翻页?

[复制链接]

Lv2.观梦者

梦石
0
星屑
719
在线时间
684 小时
注册时间
2009-5-29
帖子
461
跳转到指定楼层
1
发表于 2013-11-20 10:21:08 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

加入我们,或者,欢迎回来。

您需要 登录 才可以下载或查看,没有帐号?注册会员

x
MenuStatus里,每页显示4个角色,超出4个角色的进行横向翻页,要如何处理?

Lv5.捕梦者 (暗夜天使)

只有笨蛋才会看到

梦石
1
星屑
21631
在线时间
9415 小时
注册时间
2012-6-19
帖子
7118

开拓者短篇九导演组冠军

2
发表于 2013-11-20 22:33:11 | 只看该作者
本帖最后由 喵呜喵5 于 2013-11-20 22:43 编辑
  1. =begin
  2. ===============================================================================
  3.   伪-横向翻页的状态窗口 By喵呜喵5
  4. ===============================================================================

  5. 【说明】

  6.   将打开菜单后右侧显示人物状态的窗口修改成了横向翻页的模式
  7.   因为修改的方式相当投机取巧,所以有一个小BUG:
  8.   这个状态窗口不会显示翻页的光标
  9.   
  10. =end
  11. $m5script = {} if $m5script.nil?
  12. $m5script["M5HorzMenuStatus"] = true
  13. #==============================================================================
  14. #  脚本部分
  15. #==============================================================================
  16. class Window_MenuStatus < Window_Selectable
  17.   alias m5_2013_1120_initialize initialize
  18.   def initialize(x, y)
  19.     m5_2013_1120_initialize(x, y)
  20.     self.arrows_visible = false
  21.   end
  22.   def process_cursor_move
  23.     return unless cursor_movable?
  24.     last_index = @index
  25.     cursor_down (Input.trigger?(:DOWN)) if Input.repeat?(:DOWN) and cursor_can_down?
  26.     cursor_up   (Input.trigger?(:UP)) if Input.repeat?(:UP) and cursor_can_up?
  27.     cursor_pagedown if Input.repeat?(:RIGHT)
  28.     cursor_pageup   if Input.repeat?(:LEFT)
  29.     Sound.play_cursor if [url=home.php?mod=space&uid=370741]@Index[/url] != last_index
  30.   end
  31.   def cursor_can_up?
  32.     row != self.top_row
  33.   end
  34.   def cursor_can_down?
  35.     row != self.bottom_row
  36.   end
  37. end
复制代码

点评

谢谢咯~ P.S.看到阁下脚本库很多好东西,先搬走了哈~~  发表于 2013-11-22 09:30

评分

参与人数 1星屑 +132 收起 理由
熊喵酱 + 132 认可答案

查看全部评分

回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

GMT+8, 2024-11-17 07:35

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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