diff options
Diffstat (limited to 'conf.lua')
| -rw-r--r-- | conf.lua | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -10,6 +10,12 @@ function love.conf(t) t.audio.mic = false -- Request and use microphone capabilities in Android (boolean) t.audio.mixwithsystem = true -- Keep background music playing when opening LOVE (boolean, iOS and Android only) + t.window.title = "Openformer" + t.window.width = 1280 + t.window.height = 720 + t.window.resizable = true + t.window.minwidth = 800 + t.window.minheight = 450 t.window.vsync = 1 -- Vertical sync mode (number) t.window.msaa = 0 -- The number of samples to use with multi-sampled antialiasing (number) t.window.depth = nil -- The number of bits per sample in the depth buffer |
