-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.lua
32 lines (30 loc) · 844 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
function love.conf(t)
t.identity = "LoveAudioEffectsPlayground"
t.version = "11.4"
t.window.title = "LÖVE Audio Effects Playground v1.1"
t.window.icon = "gfx/appIcon16.png"
t.window.resizable = true
t.window.width = 1200
t.window.height = 680
t.window.minwidth = 950
t.window.minheight = 550
-- t.window.msaa = 3^2
t.modules.audio = true
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 = true
t.modules.mouse = true
t.modules.physics = false
t.modules.sound = true
t.modules.system = true
t.modules.thread = false
t.modules.timer = true
t.modules.touch = false
t.modules.video = false
t.modules.window = true
end