input-display/conf.lua

13 lines
325 B
Lua

WINDOWSCALE = 1
WINDOWWIDTH = 480*WINDOWSCALE
WINDOWHEIGHT = 270*WINDOWSCALE
BORDERLESS = 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