Jump to content
New account registrations are disabed. This website is now an archive. Read more here.
  • 0
luvrpg

Changing Color & Font of Title Screen Text

Question

Hi, I am a complete newbie here trying to make my first animated title sequence for rmxp.

 

I found ForeverZer0's "Zer0 Advanced Title Script" and it works great, but I can't figure out how to change the color and font of the text inside the command window (i.e. 'New Game,' 'Continue,' and 'Shutdown').

 

Unfortunately, I don't know any scripting :( (although I would like to learn). I've scoured different websites for hours and have come up with nothing. Does anybody know how to do this? Much thanks in advance.

Share this post


Link to post
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Place this little piece of code anywhere below Window_Command in the script editor.

 

class Window_Command

 alias title_text_draw_item draw_item
 def draw_item(index, color)
   if $scene.is_a?(Scene_Title)
  title_text_draw_item(index, Color.new(255, 128, 128)) # YOUR COLOR HERE
   else
  title_text_draw_item(index, color)
   end
 end
end

 

Just change the value on the commented line to the color you like:

 

Color.new(RED, GREEN, BLUE) # Each value is number 0-255

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...