Quote from: earthnite on June 17, 2010, 04:59:22 pm
i want to change the text color in scene_tittle to black, how do i do this?
class Window_Base < Window
alias title_screen_color normal_color
def normal_color
if $scene.is_a?(Scene_Title)
return Color.new(0, 0, 0)
end
title_screen_color
end
end