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 WASD Movement, Disable F keys and Disable mouse/touch input. | |
* | |
* @author Astra Cat | |
* | |
* @param WASD Control | |
* @desc Use WASD to move character? | |
* @default false | |
* @param Disable F2 F3 and F4 | |
* @desc Disable F2, F3, and F4 keys? |
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 Creates MouseX, MouseY, MouseXGrid, MouseYGrid and Custom Cursor. Also hides system cursor. | |
* | |
* @author Astra Cat | |
* | |
* @param MouseX and Y Updating | |
* @desc By default this is off in RPG Maker MV, needed for MouseX and MouseY global variables. | |
* @default true | |
* @param Custom Cursor Filename | |
* @desc Mouse Cursor Filename (no extension please, in /Pictures folder). Default is "cursor". |
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 WASD Movement, Disable F keys and Disable mouse/touch input. | |
* | |
* @author Astra Cat | |
* | |
* @param WASD Control | |
* @desc Use WASD to move character? | |
* @default false | |
* @param Disable F2 F3 and F4 | |
* @desc Disable F2, F3, and F4 keys? |
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 Deactivates fast forward on events on a map when Z key is held down. | |
* | |
* @author NA | |
* | |
*/ | |
Scene_Map.prototype.isFastForward = function() { | |
return false; | |
//($gameMap.isEventRunning() && !SceneManager.isSceneChanging() && |