| 赞 | 0 |
| VIP | 0 |
| 好人卡 | 0 |
| 积分 | 98 |
| 经验 | 64047 |
| 最后登录 | 2021-9-10 |
| 在线时间 | 291 小时 |
Lv4.逐梦者
- 梦石
- 9
- 星屑
- 785
- 在线时间
- 291 小时
- 注册时间
- 2007-12-15
- 帖子
- 256
|
不想换脚本也行
偶试着调了下
你在第2个Window_Message里找这段
#--------------------------------------------------------------------------
# ○ カーソルの矩形更新 [オーバーライド]
#--------------------------------------------------------------------------
def update_cursor_rect
if @index >= 0
n = $game_temp.choice_start + @index
self.cursor_rect.set(18 + @indent, n * line_height+18, @cursor_width, line_height)
else
self.cursor_rect.empty
end
end
着色这段改成
self.cursor_rect.set(24 + @indent, n * line_height + 6 , @cursor_width, line_height)
应该就可以了 系统信息:本贴由楼主认可为正确答案,66RPG感谢您的热情解答~ |
|