Created
August 23, 2023 13:13
-
-
Save triacontane/fb752e42f366a7f8bb2124fc69dcf995 to your computer and use it in GitHub Desktop.
セーブ画面のヘルプウィンドウを非表示にします
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
/*: | |
* @plugindesc セーブ画面のヘルプウィンドウを非表示にします | |
* @author ChatGPT | |
* @target MZ | |
* | |
* @help | |
* このプラグインをプラグインマネージャで追加するだけで、 | |
* セーブ画面およびロード画面のヘルプウィンドウが非表示になります。 | |
*/ | |
(() => { | |
const _Scene_File_createHelpWindow = Scene_File.prototype.createHelpWindow; | |
Scene_File.prototype.createHelpWindow = function() { | |
_Scene_File_createHelpWindow.call(this); | |
this._helpWindow.hide(); | |
}; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
By ChatGPT-4
