赞 | 0 |
VIP | 3 |
好人卡 | 7 |
积分 | 7 |
经验 | 34794 |
最后登录 | 2024-2-21 |
在线时间 | 684 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 719
- 在线时间
- 684 小时
- 注册时间
- 2009-5-29
- 帖子
- 461
|
脚本盲 发表于 2012-1-31 22:13
不要意思啊,大大。我打错了,我实际上想问的是怎么将字体的默认颜色改成黑色? ...
在 Window_Base里找到如下代码:- #--------------------------------------------------------------------------
- # ● 获取各种文字颜色
- #--------------------------------------------------------------------------
- def normal_color; text_color(0); end; # 普通
- def system_color; text_color(16); end; # 系统
- def crisis_color; text_color(17); end; # 危险
- def knockout_color; text_color(18); end; # 无法战斗
- def gauge_back_color; text_color(19); end; # 值槽背景
- def hp_gauge_color1; text_color(20); end; # HP 值槽 1
- def hp_gauge_color2; text_color(21); end; # HP 值槽 2
- def mp_gauge_color1; text_color(22); end; # MP 值槽 1
- def mp_gauge_color2; text_color(23); end; # MP 值槽 2
- def mp_cost_color; text_color(23); end; # 消费 TP
- def power_up_color; text_color(24); end; # 能力值提升(更换装备时)
- def power_down_color; text_color(25); end; # 能力值降低(更换装备时)
- def tp_gauge_color1; text_color(28); end; # TP 值槽 1
- def tp_gauge_color2; text_color(29); end; # TP 值槽 2
- def tp_cost_color; text_color(29); end; # 消费 TP
复制代码 把normal_color改成你想要的颜色即可.. |
|