| 赞 | 161 |
| VIP | 0 |
| 好人卡 | 0 |
| 积分 | 273 |
| 经验 | 0 |
| 最后登录 | 2025-11-8 |
| 在线时间 | 5463 小时 |
Lv5.捕梦者
- 梦石
- 0
- 星屑
- 27312
- 在线时间
- 5463 小时
- 注册时间
- 2016-3-8
- 帖子
- 1686
|
本帖最后由 alexncf125 于 2021-2-16 11:24 编辑
class Window_Base < Window
alias black_text_color text_color
def text_color(n)
return Color.new(0,0,0,255) if n == 32
black_text_color(n)
end
def normal_color; text_color(32); end;#非必要, 用于显示图片效果
end
加了这段脚本后, 在"显示文本"用\C[32]也能显示黑字
![]()
详细可参考
https://rpg.blue/thread-372571-1-1.html |
评分
-
查看全部评分
|