|
发表于 2007-2-11 18:08:57
|
显示全部楼层
Window_Base里有个...
def normal_color
return Color.new(255, 255, 255, 255)
end
修改后,你会发现整个系统字的颜色都变了~~
再仔细查查,你看到Window_Message里有个...
self.contents.font.color = normal_color
也就是对话框调用normal_color这个颜色...
因此我们可以在Window_Base里,照猫画虎定义一个颜色...
def message_color
return Color.new(0, 0, 0, 255)
end
然后Window_Message那改成...
self.contents.font.color = message_color
这样就成了~ |
|