赞 | 0 |
VIP | 110 |
好人卡 | 0 |
积分 | 1 |
经验 | 20413 |
最后登录 | 2016-12-8 |
在线时间 | 192 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 192 小时
- 注册时间
- 2007-7-14
- 帖子
- 2746
|
进脚本编辑器找到“Window_Base”的41行左右
- 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
复制代码
里面的颜色可以改,参照RGB,不懂颜色的话随便打开“画图”也能知道,黑色就是(0, 0, 0)
字体问题推荐使用fuki对话框(又名呼出对话框、漫画对话框):
http://rpg.blue/web/htm/news347.htm 系统信息:本贴由本区版主认可为正确答案,66RPG感谢您的热情解答~ |
|