赞 | 0 |
VIP | 1 |
好人卡 | 0 |
积分 | 1 |
经验 | 1289 |
最后登录 | 2012-10-7 |
在线时间 | 14 小时 |
Lv1.梦旅人 Haagen-Daz
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 14 小时
- 注册时间
- 2009-1-24
- 帖子
- 614
|
在Window_Base里
def normal_color
return Color.new(255, 255, 255, 255)
end
return Color.new 就是控制颜色的……
颜色就调节后面的255,255,255,255就可以了~
所有色系:
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 系统信息:本贴由本区版主认可为正确答案,66RPG感谢您的热情解答~ |
|