Paprika 2 Posted November 21, 2015 Hello! 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... Share this post Link to post Share on other sites
+ TBWCS 953 Posted November 21, 2015 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