Created
October 10, 2020 11:59
-
-
Save MCarlomagno/5ec5dfbe60256edd6d29454c337bc46f to your computer and use it in GitHub Desktop.
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
subzeroActions = { | |
RIGHT: 39, // right arrow | |
LEFT : 37, // left arrow | |
UP : 38, // up arrow | |
DOWN : 40, // down arrow | |
BLOCK: 81, // Q | |
HP : 65, // A | |
LP : 83, // S | |
LK : 68, // D | |
HK : 70 // F | |
}; | |
kanoActions = { | |
RIGHT: 99, // 1 | |
LEFT : 97, // 3 | |
UP : 101, // 5 | |
DOWN : 98, // 2 | |
BLOCK: 100, // 4 | |
HP : 103, // 7 | |
LP : 104, // 8 | |
LK : 105, // 9 | |
HK : 107 // + | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment