Delete

Started by Geust, June 17, 2010, 04:59:22 pm

Previous topic - Next topic

Geust

June 17, 2010, 04:59:22 pm Last Edit: April 01, 2021, 05:35:49 am by earthnite
Thanks.

ForeverZer0

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
I am done scripting for RMXP. I will likely not offer support for even my own scripts anymore, but feel free to ask on the forum, there are plenty of other talented scripters that can help you.