Advertisement
heroofhyla

customControls.js

Dec 2nd, 2016
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*:
  2.  * @plugindesc Enables alternate controls
  3.  * @author Michael Stroud
  4.  *
  5.  * No warranty, express or implied. I can't guarantee that it will
  6.  * work at all. If it's useful to you, credit is appreciated.
  7.  * You may redistribute, but do not remove any of the above.
  8.  * @help
  9.  * This script enables Z to confirm and X to cancel and open the menu */
  10.  
  11. (function(){
  12.     Input.keyMapper[90] = 'ok';       //z
  13.     Input.keyMapper[88] = 'escape';   //x
  14. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement