Skip to content

Instantly share code, notes, and snippets.

@triacontane
Created August 23, 2023 13:13
Show Gist options
  • Save triacontane/fb752e42f366a7f8bb2124fc69dcf995 to your computer and use it in GitHub Desktop.
Save triacontane/fb752e42f366a7f8bb2124fc69dcf995 to your computer and use it in GitHub Desktop.
セーブ画面のヘルプウィンドウを非表示にします
/*:
* @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();
};
})();
@triacontane
Copy link
Author

By ChatGPT-4
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment