unholy-maiden/js/plugins/Unit03_menu_override.js
2025-12-18 09:44:14 -06:00

34 lines
No EOL
785 B
JavaScript

//=============================================================================
// menu_windows_override.js v1.0
//=============================================================================
//-----------------------------------------------------------------------------
// Window_Base
//
// The superclass of all windows within the game.
/*:
* @target MZ
* @plugindesc カスタムメニューで上書き
* @author PB
*
* @help
*
*/
(() => {
"use strict";
Scene_Map.prototype.callMenu = function() {
SoundManager.playOk();
SceneManager.callCustomMenu( "Scene_ActorList" ); // オーバーライド
$gameTemp.clearDestination();
this._mapNameWindow.hide();
this._waitCount = 2;
};
//動作コード
})();