The game window class. Created internally from multiple sprites.
Creates a window object. Specifies position and size as necessary.
Frees the window. If the window has already been freed, does nothing.
Returns TRUE if the window has been freed.
Refreshes the cursor blink and the pause graphic animation. As a general rule, this method is called once per frame.
Sets the x-coordinate, y-coordinate, width, and height all at once.
Returns true if the window is completely open (openness == 255).
Returns true if the window is completely closed (openness == 0).
Refers to the bitmap (Bitmap) used as a window skin.
Skin specifications are nearly identical to those in the previous version (VX). Resource standards: See the detailed information on window skins.
Refers to the bitmap (Bitmap) used for the window's contents.
The cursor box (Rect).
Specifies a rectangle with coordinates based on the window's contents. (RGSS3)
Refers to the viewport (Viewport) associated with the window.
The cursor's blink status. If TRUE, the cursor is blinking. The default is TRUE.
The window's visibility. If TRUE, the window is visible. The default is TRUE.
The visibility of scrolling arrows. If TRUE, the arrows are visible. The default is TRUE.
The pause graphic's visibility. This is a symbol that appears in the message window when waiting for the player to press a button. If TRUE, the graphic is visible. The default is FALSE.
The window's x-coordinate.
The window's y-coordinate.
The window's width.
The window's height.
The window's z-coordinate. The larger the value, the closer to the player the window will be displayed.
If multiple objects share the same z-coordinate, the more recently created object will be displayed closest to the player.
The default is 100 (RGSS3).
The x-coordinate of the starting point of the window's contents. Change this value to scroll the window's contents.
Also affects the cursor. (RGSS3)
The y-coordinate of the starting point of the window's contents. Change this value to scroll the window's contents.
Also affects the cursor. (RGSS3)
The size of the padding between the window's frame and contents. The default value is 12. (RGSS3)
The padding for the bottom. Must be set after padding because it is changed along with it.
The window's opacity (0-255). Out-of-range values are automatically corrected. The default value is 255.
The window background's opacity (0-255). Out-of-range values are automatically corrected. The default value is 192 (RGSS3).
The opacity of the window's contents (0-255). Out-of-range values are automatically corrected. The default value is 255.
The openness of the window (from 0 to 255). Out-of-range values are automatically corrected.
By changing this value in stages from 0 (completely closed) to 255 (completely open), it is possible to create an animation of the window opening and closing. If the openness is less than 255, the contents of the window will not be displayed. The default value is 255.
The color (Tone) of the window's background.