Does anyone know how I can remove the rectangular box covering the text on the title screen?
Removing the rectangle box for title screen
● ARCHIVED · READ-ONLY
-
-
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 -
I've moved this thread to RGSSx Script Support. Please be sure to post your threads in the correct forum next time. Thank you.
-
Thanks, that helped!