Skip to content

Instantly share code, notes, and snippets.

@MCarlomagno
Created October 10, 2020 11:59
Show Gist options
  • Save MCarlomagno/5ec5dfbe60256edd6d29454c337bc46f to your computer and use it in GitHub Desktop.
Save MCarlomagno/5ec5dfbe60256edd6d29454c337bc46f to your computer and use it in GitHub Desktop.
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