赞 | 90 |
VIP | 350 |
好人卡 | 311 |
积分 | 101 |
经验 | 150139 |
最后登录 | 2024-7-17 |
在线时间 | 5020 小时 |
Lv4.逐梦者 (版主) 无限の剣制
- 梦石
- 0
- 星屑
- 10074
- 在线时间
- 5020 小时
- 注册时间
- 2013-2-28
- 帖子
- 5030
|
如果你是说要在显示选项里设置文本的颜色,那你可以用控制符例如 \c[1]
如果你是要光标选中的那行变色,那得改默认脚本,并且导致上面的控制符无法使用,不是很建议做这样的效果,
一定要这样做的话,可以参考如下代码未测试- class Window_ChoiceList < Window_Command
- def draw_item(index)
- rect = item_rect_for_text(index)
- change_color(index == self.index ? system_color : normal_color)
- draw_text(rect.x, rect.y, rect.width, rect.height, command_name(index))
- end
- def update_cursor
- super
- refresh
- end
- end
复制代码 |
评分
-
查看全部评分
|