input-display/conf.lua
2025-08-30 09:23:35 -07:00

14 lines
No EOL
337 B
Lua

WINDOWSCALE = 1
WINDOWWIDTH = 373*WINDOWSCALE
WINDOWHEIGHT = 212*WINDOWSCALE
BORDERLESS = true
BLACK = true
function love.conf(t)
t.window.width = WINDOWWIDTH
t.window.height = WINDOWHEIGHT
t.window.borderless = BORDERLESS
t.window.title = "input display"
t.window.icon = "icon.png"
t.modules.physics = false
end