赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 98 |
经验 | 64047 |
最后登录 | 2021-9-10 |
在线时间 | 291 小时 |
Lv4.逐梦者
- 梦石
- 9
- 星屑
- 785
- 在线时间
- 291 小时
- 注册时间
- 2007-12-15
- 帖子
- 256
|
Window_Base里
#--------------------------------------------------------------------------
# ● 获取文字色
# n : 文字色编号 (0~7)
#--------------------------------------------------------------------------
def text_color(n)
case n
when 0
return Color.new(255, 255, 255, 255)
#--------------------------------------------------------------------------
# ● 获取普通文字色
#--------------------------------------------------------------------------
def normal_color
return Color.new(255, 255, 255, 255)
end
#--------------------------------------------------------------------------
# ● 获取系统文字色
#--------------------------------------------------------------------------
def system_color
return Color.new(192, 224, 255, 255)
end
return Color.new(xxx,xxx, xxx, xxx)都改成return Color.new(0, 0, 0, 255)
这样大多数文字都是黑色 不过这样好看吗?
系统信息:本贴由本区版主认可为正确答案,66RPG感谢您的热情解答~ |
|