diff options
| author | cursed22bc <admin@pixeldawn.org> | 2026-03-10 23:16:58 +0200 |
|---|---|---|
| committer | cursed22bc <admin@pixeldawn.org> | 2026-03-10 23:16:58 +0200 |
| commit | 0dce23b4b24ae74889550dc0b81ea393c047f929 (patch) | |
| tree | 849eec42d84928ea235a51c1d6df984282e3af91 /conf.lua | |
| parent | d2dab6c8efcf126503c004e935fda9190533729c (diff) | |
evil window hacks
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 |
