赞 | 0 |
VIP | 30 |
好人卡 | 4 |
积分 | 1 |
经验 | 6446 |
最后登录 | 2022-4-23 |
在线时间 | 156 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 84
- 在线时间
- 156 小时
- 注册时间
- 2009-8-5
- 帖子
- 533
|
- #--------------------------------------------------------------------------
- # ● 刷新光标矩形
- #--------------------------------------------------------------------------
- def update_cursor_rect
- if $game_switches[01]
- #.........................................................................
- if @index >= 0
- n = $game_temp.choice_start + @index
- self.cursor_rect.set(8 + @indent + @face_indent, n * 23 + 8, @cursor_width, 23)
- else
- self.cursor_rect.empty
- end
- #.........................................................................
- else
- if @index >= 0
- n = $game_temp.choice_start + @index
- self.cursor_rect.set(8, n * 23, @cursor_width, 23)
- else
- self.cursor_rect.empty
- end
- end
- end
复制代码 符上改好的 |
|