Advertisement
heroofhyla

Untitled

Oct 20th, 2016
2,810
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*:
  2.  * @plugindesc Enables movement with the WASD keys.
  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 allows character movement with WASD, in addition to the
  10.  * arrow keys.
  11.  */
  12.  
  13. (function(){
  14.     Input.keyMapper[65] = 'left';     //a
  15.     Input.keyMapper[68] = 'right';    //d
  16.     Input.keyMapper[87] = 'up';       //w
  17.     Input.keyMapper[83] = 'down';     //s
  18.     Input.keyMapper[69] = 'pagedown'; //e
  19. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement