-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconf.lua
More file actions
13 lines (13 loc) · 816 Bytes
/
conf.lua
File metadata and controls
13 lines (13 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
function love.conf(t)
t.title = "Project Umbrella"
t.window.icon = "assets/gfx/sturm_seitlich.png"
t.window.width = 0 -- The window width (number)
t.window.height = 0 -- The window height (number)
t.window.borderless = true -- Remove all border visuals from the window (boolean)
t.window.resizable = true -- Let the window be user-resizable (boolean)
t.window.minwidth = 1 -- Minimum window width if the window is resizable (number)
t.window.minheight = 1 -- Minimum window height if the window is resizable (number)
t.window.fullscreen = true -- Enable fullscreen (boolean)
t.window.fullscreentype = "desktop" -- Standard fullscreen or desktop fullscreen mode (string)
t.window.vsync = true
end