love-demo2/conf.lua
2026-03-05 21:53:02 -06:00

8 lines
189 B
Lua

function love.conf(t)
t.window.width = 1024
t.window.height = 1024
t.window.depth = true
t.window.resizable = true
t.graphics.excluderenderers = {"vulkan", "metal"}
end