赞 | 5 |
VIP | 620 |
好人卡 | 38 |
积分 | 69 |
经验 | 125468 |
最后登录 | 2015-7-27 |
在线时间 | 1666 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 6875
- 在线时间
- 1666 小时
- 注册时间
- 2008-10-29
- 帖子
- 6710
|
Scene_Title类
大约在第40行
@command_window = Window_Command.new(192, [s1, s2, s3, s4])
192就是长度
你说的标题字颜色就是说的"新游戏""继续""退出"
这些字的颜色吗?
如果是的话要这样改,如果不是就在说清楚点……!
@command_window = Window_Command.new(192, [s1, s2, s3])
下面加一句
@command_window.refresh(Color.new(R, G, B, 255))
RGB颜色自己调
比如红色 Color.new(255, 0, 0, 255)
然后找到
Window_Command类
吧
def refresh
self.contents.clear
for i in 0...@item_max
draw_item(i,normal_color)
end
end
替换为
def refresh(color=normal_color)
self.contents.clear
for i in 0...@item_max
draw_item(i,color)
end
end
就可以了 |
|