-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconf.lua
More file actions
32 lines (31 loc) · 908 Bytes
/
Copy pathconf.lua
File metadata and controls
32 lines (31 loc) · 908 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
function love.conf(t)
t.identity = "graphics"
t.appendidentity = true
t.author = "Mewore"
t.title = "Graphics"
-- Attach a console (boolean, Windows only)
t.console = true
-- Enable release mode (boolean)
t.release = false
-- The window width (number)
t.window.width = 1280
-- The window height (number)
t.window.height = 720
-- Remove all border visuals from the window (boolean)
t.window.borderless = false
-- Let the window be user-resizable (boolean)
t.window.resizable = true
-- Enable fullscreen (boolean)
t.window.fullscreen = false
-- Enable vertical sync (boolean)
t.window.vsync = true
-- The number of FSAA-buffers (number)
t.window.fsaa = 0
--Modules to enable
t.modules.keyboard = true
t.modules.event = true
t.modules.image = true
t.modules.graphics = true
t.modules.timer = true
t.modules.mouse = true
end