赞 | 0 |
VIP | 135 |
好人卡 | 6 |
积分 | 3 |
经验 | 37799 |
最后登录 | 2020-4-30 |
在线时间 | 812 小时 |
Lv2.观梦者 旅之愚者
- 梦石
- 0
- 星屑
- 275
- 在线时间
- 812 小时
- 注册时间
- 2007-7-28
- 帖子
- 2148
|
本帖最后由 六祈 于 2010-7-22 14:06 编辑
回复 冰舞蝶恋 的帖子
于是实现它- class Window_Selectable < Window_Base
- alias old_initialize initialize
- def initialize(x, y, width, height)
- old_initialize(x, y, width, height)
- @last_index = 0
- end
-
- alias old_update_cursor_rect update_cursor_rect
- def update_cursor_rect
- if self.is_a?(Window_Command) or self.is_a?(Window_PartyCommand)
- draw_item(@last_index,normal_color)
- draw_item(@index,system_color)
- else
- old_update_cursor_rect
- end
- @last_index = @index
- end
- end
复制代码 system_color可以改成Color.new(xxx,xxx,xxx,xxx)
参数为四个数字,依次为R红 G绿 B蓝和不透明度 |
|