I've made this very simple plugin which is supposed to always disable the menu opened with ESC key, from any maps :
Code:
//=============================================================================
// disableMenu.js
//=============================================================================
/*:
* @plugindesc Always disable the game menu.
* @author Astro785
*
* @help This plugin does not provide plugin commands.
*/
(function() {
$gameSystem.disableMenu();
})();I've activated it inside my game's plugins, but I am still able to open the menu with the ESC key.
Any insights of why it doesnt work ?
Thanks ! :rock-right: