-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconf.lua
33 lines (31 loc) · 837 Bytes
/
conf.lua
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
33
function love.conf(t)
t.console = false
t.window.title = "Multiviewer 2"
t.window.icon = "Multiviewer_icon.png"
t.window.width = 800
t.window.height = 600
t.window.borderless = false
t.window.resizable = true
t.window.fullscreen = false
t.window.fullscreentype = "desktop"
t.window.vsync = 1
t.window.display = 1
t.modules.audio = false
t.modules.data = false
t.modules.event = true
t.modules.font = true
t.modules.graphics = true
t.modules.image = true
t.modules.joystick = false
t.modules.keyboard = true
t.modules.math = false
t.modules.mouse = true
t.modules.physics = false
t.modules.sound = false
t.modules.system = true -- Need for copy-paste.
t.modules.thread = true
t.modules.timer = true
t.modules.touch = true
t.modules.video = false
t.modules.window = true
end