13 lines
407 B
Lua
13 lines
407 B
Lua
love.conf = function(t)
|
|
t.gammacorrect = true
|
|
t.title, t.identity = "escape-the-crash", "Bill Niblock"
|
|
t.modules.joystick = false
|
|
t.modules.physics = false
|
|
-- This scales the game, and it still looks quite nice at 1440p!
|
|
t.window.fullscreen = false
|
|
t.window.fullscreentype = "desktop"
|
|
t.window.width = 800
|
|
t.window.height = 600
|
|
t.window.vsync = false
|
|
t.version = "11.5"
|
|
end
|