Removing the rectangle box for title screen

● ARCHIVED · READ-ONLY
Started by DarkCreator50 4 posts View original ↗
  1. Does anyone know how I can remove the rectangular box covering the text on the title screen?
  2. you can add this in to the Materials section in the script editor

    class Window_TitleCommand < Window_Command #-------------------------------------------------------------------------- # * Object Initialization #-------------------------------------------------------------------------- alias :hide_window_ini :initialize def initialize hide_window_ini self.opacity = 0 endendedit:

    Not sure if you meant making the cursor disappear, that would be this one:

    Code:
    class Window_TitleCommand < Window_Command  #--------------------------------------------------------------------------  # * Update Cursor  #--------------------------------------------------------------------------  def update_cursor    super    cursor_rect.empty  endend
  3. I've moved this thread to RGSSx Script Support. Please be sure to post your threads in the correct forum next time. Thank you.
  4. Thanks, that helped!