-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconf.lua
More file actions
13 lines (12 loc) · 700 Bytes
/
conf.lua
File metadata and controls
13 lines (12 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'main'
function love.conf(t)
t.title = "MoonCrypt" -- The title of the window
t.version = "11.5" -- The LOVE version this game was made for (string)
t.window.width = SCREEN_WIDTH -- The window width (number)
t.window.height = SCREEN_HEIGHT -- The window height (number)
t.window.borderless = false -- Remove all border visuals (boolean)
t.window.fullscreen = false -- Enable fullscreen (boolean)
t.window.vsync = true -- Enable vertical sync (boolean)
t.window.msaa = 9 -- The number of samples to use with multi-sampled antialiasing (number)
t.window.resizable = false -- Disable window resizing
end