-
Notifications
You must be signed in to change notification settings - Fork 0
/
conf.lua
34 lines (34 loc) · 913 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
34
function love.conf(t)
t.identity = nil
t.version = "11.1"
t.console = false
t.window.title = "School for Zergs"
t.window.icon = nil
t.window.width = 1280
t.window.height = 720
t.window.borderless = false
t.window.resizable = true
t.window.minwidth = 600
t.window.minheight = 400
t.window.fullscreen = false
t.window.vsync = false
t.window.fsaa = 0
t.window.display = 0
t.window.highdpi = false
t.window.srgb = false
t.window.x = nil
t.window.y = nil
t.modules.audio = false
t.modules.event = true
t.modules.graphics = false
t.modules.image = false
t.modules.joystick = false
t.modules.keyboard = true
t.modules.math = true
t.modules.mouse = true
t.modules.physics = false
t.modules.sound = false
t.modules.system = true
t.modules.timer = true
t.modules.window = false
end