Chaos Project

RPG Maker => RPG Maker Scripts => Script Requests => Topic started by: Geust on June 17, 2010, 04:59:22 pm

Title: Delete
Post by: Geust on June 17, 2010, 04:59:22 pm
Thanks.
Title: Re: Change text color
Post by: ForeverZer0 on June 23, 2010, 06:38:11 pm
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?


maybe something like 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