Last active
October 30, 2025 08:40
-
-
Save sugoidogo/958f026e1ef0f4f7295e386476570369 to your computer and use it in GitHub Desktop.
RPGMaker MZ plugin to increase the size of the Options window
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*: | |
| * @target MZ | |
| * @plugindesc Increases the size of the Options window | |
| * @author SugoiDogo | |
| * @license LGPL-3.0-or-later (https://www.gnu.org/licenses/lgpl-3.0.en.html) | |
| * @help Sugoi_LargerOptionsWindow.js | |
| * | |
| * Increases the size of the Options window | |
| */ | |
| { | |
| const initialize = Window_Options.prototype.initialize | |
| Window_Options.prototype.initialize = function (rect) { | |
| initialize.call(this, new Rectangle(0, 0, 700, 600)) | |
| } | |
| Window_Options.prototype.statusWidth = function () { | |
| return 300 | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment