赞 | 153 |
VIP | 10 |
好人卡 | 39 |
积分 | 93 |
经验 | 146191 |
最后登录 | 2024-5-6 |
在线时间 | 2504 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 9280
- 在线时间
- 2504 小时
- 注册时间
- 2011-5-20
- 帖子
- 15389
|
- #==============================================================================
- # ■ Window_HorzCommand
- #------------------------------------------------------------------------------
- # 横向选择的指令窗口
- #==============================================================================
- class Window_HorzCommand < Window_Command
- #--------------------------------------------------------------------------
- # ● 设置首列位置
- #--------------------------------------------------------------------------
- def top_col=(col)
- col = 0 if col < 0
- # col = col_max - 1 if col>col_max-1
- col = index - col_max + 1 if col > col_max - 1
- self.ox = col * (item_width + spacing)
- end
- end
复制代码
BUG找出了···(注释掉的为之前的脚本) |
|