Skip to content

Instantly share code, notes, and snippets.

@sevanspowell
Created December 9, 2016 01:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sevanspowell/e1ea6b8dab2c31ac2789d98234f18936 to your computer and use it in GitHub Desktop.
Save sevanspowell/e1ea6b8dab2c31ac2789d98234f18936 to your computer and use it in GitHub Desktop.
Draygon Tensor - An example config file
{
"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