Skip to content

Commit

Permalink
add 'dn' case for down
Browse files Browse the repository at this point in the history
  • Loading branch information
mwood77 committed Jan 17, 2024
1 parent 7d10883 commit 116250e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions input-mapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ function inputMapper(key, modifier, author, player) {
holdInput(REF.INPUT[accessor].UP, modifier);
break;
case 'D':
case 'DN':
case 'DOWN':
logInput(key, author, player);
holdInput(REF.INPUT[accessor].DOWN, modifier);
Expand Down Expand Up @@ -233,14 +234,14 @@ function inputMapper(key, modifier, author, player) {
case 'Z':
case 'ZTRIG':
break;
// logInput(key, author);
// logInput(key, author, player);
// tapOrRepititiveTapInput(key, modifier);
// break;
case 'CC':
case 'CENTERCAM':
break;
// Super Mario 64 Specific
// logInput('centering camera', author);
// logInput('centering camera', author, player);
// centerCamera(['u', 'j']); // [0] = zoom in, [1] = zoom out
// break;
case 'QUIT-IT':
Expand Down

0 comments on commit 116250e

Please sign in to comment.