Jump to content
Sign in to follow this  
Paprika

Title menu transparency

Recommended Posts

Hello!  :P

I want menu on title screen to have transparent background so only words

can be visible but limits around it to be invisible...

Do you know how do do it?

Please help me... :unsure:

Share this post


Link to post
Share on other sites

On your Scene_Title script, change this:

  def create_command_window
    @command_window = Window_TitleCommand.new
    @command_window.set_handler(:new_game, method(:command_new_game))
    @command_window.set_handler(:continue, method(:command_continue))
    @command_window.set_handler(:shutdown, method(:command_shutdown))
  end

to this:

  def create_command_window
    @command_window = Window_TitleCommand.new
    @command_window.opacity = 0
    @command_window.set_handler(:new_game, method(:command_new_game))
    @command_window.set_handler(:continue, method(:command_continue))
    @command_window.set_handler(:shutdown, method(:command_shutdown))
  end

Share this post


Link to post
Share on other sites
Guest
This topic is now closed to further replies.
Sign in to follow this  

  • Recently Browsing   0 members

    No registered users viewing this page.

×
Top ArrowTop Arrow Highlighted