8 lines
189 B
Lua
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
|