Created
September 20, 2015 20:16
-
-
Save wilbefast/2e8564e531443b177629 to your computer and use it in GitHub Desktop.
A simple little configuration file for keyboard controls.
This file contains 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
return { | |
keyboard = { | |
{ | |
up = { "w", "z" }, | |
down = { "s" }, | |
left = { "q", "a" }, | |
right = { "d"}, | |
confirm = { "lctrl" }, | |
cancel = { "h" }, | |
advanced = { "lalt" }, | |
basic = { "lshift" } | |
}, | |
{ | |
up = { "up" }, | |
down = { "down" }, | |
left = { "left" }, | |
right = { "right"}, | |
confirm = { "rctrl", "return" }, | |
cancel = { "l" }, | |
advanced = { "ralt" }, | |
basic = { "rshift" } | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment