赞 | 0 |
VIP | 7 |
好人卡 | 0 |
积分 | 1 |
经验 | 3983 |
最后登录 | 2013-2-27 |
在线时间 | 72 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 72 小时
- 注册时间
- 2010-10-18
- 帖子
- 104
|
回复 358552588 的帖子
不太懂LZ的问题在哪
不过菜单排版脚本光标选择的地方怪怪的没错
不知是LZ自己改过还是咋的
先找到该脚本的210行的更新光标update_cursor这个FUNCTION
替换成下面这段- def update_cursor
- if @index < 0 # 没有光标
- self.cursor_rect.empty
- elsif @index < @item_max # 普通
- self.cursor_rect.set(@index * 96,30, 96,264)
- elsif @index >= 100 # 自己
- self.cursor_rect.set((@index - 100) * 96,30,96,264)
- else # 全体
- self.cursor_rect.set(0, 3, @item_max * 96, 264)
- end
- if Input.trigger?(Input::LEFT)
- @index-=1
- if @index < 0
- return @index=@item_max-1
- end
- elsif Input.trigger?(Input::RIGHT)
- @index+=1
- if @index >= @item_max
- return @index=0
- end
- end
- end
复制代码 LZ问题应该是菜单光标移动没错吧
自己测了下
应该是正确了
LZ看看吧
修改後的工程
时光穿梭机-古代篇.rar
(439.84 KB, 下载次数: 25)
|
|