Project1

标题: 如何修改系统默认字体颜色? [打印本页]

作者: nwebin    时间: 2013-3-4 09:04
标题: 如何修改系统默认字体颜色?
换了淡底色的窗口边框样式,系统字体还是显示为白色,我想将字体色改为黑色,于是在MAIN脚本里插入Font.default_color=(0,0,0),但游戏运行总说这行有错误,求高手破解~
作者: 美丽晨露    时间: 2013-3-4 12:29
在WINDOWS_BASE脚本内的普通字体内修改颜色
作者: Zhangjiaxing1    时间: 2013-3-5 11:43
C:\Documents and Settings\User\桌面\新建文件夹\QQ截图.png
作者: Zhangjiaxing1    时间: 2013-3-5 11:45
本帖最后由 hcm 于 2013-3-21 11:44 编辑

不知道怎么发图:
在Window_Base61行后:
  1.   #--------------------------------------------------------------------------
  2.   # ● 获取普通文字色
  3.   #--------------------------------------------------------------------------
  4.   def normal_color
  5.     return Color.new(255, 255, 255, 255)
  6.   end
  7.   #--------------------------------------------------------------------------
  8.   # ● 获取无效文字色
  9.   #--------------------------------------------------------------------------
  10.   def disabled_color
  11.     return Color.new(255, 255, 255, 128)
  12.   end
  13.   #--------------------------------------------------------------------------
  14.   # ● 获取系统文字色
  15.   #--------------------------------------------------------------------------
  16.   def system_color
  17.     return Color.new(192, 224, 255, 255)
  18.   end
  19.   #--------------------------------------------------------------------------
  20.   # ● 获取危机文字色
  21.   #--------------------------------------------------------------------------
  22.   def crisis_color
  23.     return Color.new(255, 255, 64, 255)
  24.   end
  25.   #--------------------------------------------------------------------------
  26.   # ● 获取战斗不能文字色
  27.   #--------------------------------------------------------------------------
  28.   def knockout_color
  29.     return Color.new(255, 64, 0)
  30.   end
复制代码

作者: 弗雷德    时间: 2013-3-5 12:35
设定字体颜色是:
self.contents.font.color = Color.new(255, 128, 128, 255)
四个值分别是R红 G绿 B蓝 透明度。
作者: nwebin    时间: 2013-3-5 13:16
弗雷德 发表于 2013-3-5 12:35
设定字体颜色是:
self.contents.font.color = Color.new(255, 128, 128, 255)
四个值分别是R红 G绿 B蓝 透 ...

不行呀,还是提示出错
作者: 芯☆淡茹水    时间: 2013-3-5 15:43
nwebin 发表于 2013-3-5 13:16
不行呀,还是提示出错

参照 4楼  把那个 普通文字色

return Color.new(255, 255, 255, 255)

改为:
return Color.new(0,  0,  0)       <--  黑
作者: 英顺的马甲    时间: 2013-3-5 16:53
Font.default_color = Color.new(0,0,0)




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1