Skip to content

Instantly share code, notes, and snippets.

@markhansaven
Created January 15, 2016 16:59
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save markhansaven/c577b5ceac9344d23e0a to your computer and use it in GitHub Desktop.
Save markhansaven/c577b5ceac9344d23e0a to your computer and use it in GitHub Desktop.
Miscellaneous RPG Maker MV script - deactivate Z speeding up events
/*:
* @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() &&
//(Input.isLongPressed('ok') || TouchInput.isLongPressed()));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment