Created
December 9, 2016 01:19
-
-
Save sevanspowell/e1ea6b8dab2c31ac2789d98234f18936 to your computer and use it in GitHub Desktop.
Draygon Tensor - An example config file
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
{ | |
"Video": { | |
"redBits": 8, | |
"greenBits": 8, | |
"blueBits": 8, | |
"alphaBits": 8, | |
"depthBits": 24, | |
"stencilBits": 8, | |
"fullscreen": true, | |
"lockMouse": true, | |
"width": 1600, | |
"height": 1200, | |
"title": "Physics", | |
"renderer": "openGL", | |
"majorVersion": 3, | |
"minorVersion": 3, | |
"profile": "core" | |
}, | |
"Script": { | |
"bootScript": "../assets/boot.lua" | |
}, | |
"Input": [ | |
{ | |
"name": "Default", | |
"bindings": [ | |
{ "key": "`", "msg": "console_toggle" }, | |
{ "key": "w", "msg": "move_forward" }, | |
{ "key": "s", "msg": "move_backward" }, | |
{ "key": "a", "msg": "strafe_left" }, | |
{ "key": "d", "msg": "strafe_right" } | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment