楼上的是对的,我也提供一种方法。
在Main之前插入:(红色部分可以自行调整)
class Window_Command
def refresh
self.contents.clear
for i in 0...@item_max
if $scene.is_a?(Scene_Title) color = Color.new(255,0,255)
else
color = normal_color
end
draw_item(i, color)
end
end
end作者: pwn7235522 时间: 2012-8-5 22:22
对我有用 非常感谢