lispjam-autumn-2024/conf.lua

14 lines
407 B
Lua
Raw Permalink Normal View History

2024-10-29 23:44:41 +00:00
love.conf = function(t)
t.gammacorrect = true
2024-11-03 23:56:31 +00:00
t.title, t.identity = "escape-the-crash", "Bill Niblock"
2024-10-29 23:44:41 +00:00
t.modules.joystick = false
t.modules.physics = false
-- This scales the game, and it still looks quite nice at 1440p!
2024-11-07 03:14:28 +00:00
t.window.fullscreen = false
t.window.fullscreentype = "desktop"
2024-10-29 23:44:41 +00:00
t.window.width = 800
t.window.height = 600
t.window.vsync = false
t.version = "11.5"
end