forked from A-deLuna/Concurso_IDGD_2014
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.lua
33 lines (31 loc) · 851 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.identity = nil
t.version = "0.9.1"
t.console = false
t.window.title = "Juego IDGD Alpha"
t.window.icon = "img/icon/icon.png"
t.window.width = 800
t.window.height = 600
t.window.borderless = false
t.window.resizable = false
t.window.fullscreen = false
t.window.fullscreentype = "normal"
t.window.vsync = true
t.window.fsaa = 0
t.window.display = 1
t.window.highdpi = false
t.window.srgb = false
t.modules.audio = true
t.modules.event = true
t.modules.graphics = true
t.modules.image = true
t.modules.joystick = true
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.timer = true
t.modules.window = true
end