赞 | 0 |
VIP | 164 |
好人卡 | 42 |
积分 | 1 |
经验 | 25008 |
最后登录 | 2017-9-16 |
在线时间 | 1141 小时 |
Lv1.梦旅人 梦·贤者
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 1141 小时
- 注册时间
- 2007-12-15
- 帖子
- 4100
|
Window_Base里面有这一段:
- #--------------------------------------------------------------------------
- # ● 获取文字色
- # n : 文字色编号 (0~7)
- #--------------------------------------------------------------------------
- def text_color(n)
- case n
- when 0
- return Color.new(255, 255, 255, 255)
- when 1
- return Color.new(128, 128, 255, 255)
- when 2
- return Color.new(255, 128, 128, 255)
- when 3
- return Color.new(128, 255, 128, 255)
- when 4
- return Color.new(128, 255, 255, 255)
- when 5
- return Color.new(255, 128, 255, 255)
- when 6
- return Color.new(255, 255, 128, 255)
- when 7
- return Color.new(192, 192, 192, 255)
- else
- normal_color
- end
- end
- #--------------------------------------------------------------------------
- # ● 获取普通文字色
- #--------------------------------------------------------------------------
- def normal_color
- return Color.new(255, 255, 255, 255)
- end
- #--------------------------------------------------------------------------
- # ● 获取无效文字色
- #--------------------------------------------------------------------------
- def disabled_color
- return Color.new(255, 255, 255, 128)
- end
- #--------------------------------------------------------------------------
- # ● 获取系统文字色
- #--------------------------------------------------------------------------
- def system_color
- return Color.new(192, 224, 255, 255)
- end
- #--------------------------------------------------------------------------
- # ● 获取危机文字色
- #--------------------------------------------------------------------------
- def crisis_color
- return Color.new(255, 255, 64, 255)
- end
- #--------------------------------------------------------------------------
- # ● 获取战斗不能文字色
- #--------------------------------------------------------------------------
- def knockout_color
- return Color.new(255, 64, 0)
- end
复制代码
可能都要改。你先改一个试试:
def normal_color
return Color.new(255, 255, 255, 255)
end
改为:
def normal_color
return Color.new(0, 0, 0, 255)
end 系统信息:本贴由楼主认可为正确答案,66RPG感谢您的热情解答~ |
|