- Joined
- Jul 4, 2014
- Messages
- 2,162
- Reaction score
- 822
- First Language
- Hungarian
- Primarily Uses
- RMVXA
You want to hide the window entirely? If so, just search for this line:
super(x, y, Graphics.width, fitting_height(6))
And right below that line, add this:
self.opacity = 0
This hides the whole window background while still displaying everything inside the window.
super(x, y, Graphics.width, fitting_height(6))
And right below that line, add this:
self.opacity = 0
This hides the whole window background while still displaying everything inside the window.

