13 lines
409 B
Lua
13 lines
409 B
Lua
love.conf = function(t)
|
|
t.gammacorrect = true
|
|
t.title, t.identity = "Space Crawler", "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 = true
|
|
-- t.window.fullscreentype = "desktop"
|
|
t.window.width = 640
|
|
t.window.height = 360
|
|
t.window.vsync = false
|
|
t.version = "11.5"
|
|
end
|