-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.lua
41 lines (38 loc) · 1.46 KB
/
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
35
36
37
38
39
40
41
function love.conf(w)
--% Window %--
w.window.width = 1280
w.window.height = 768
w.window.icon = "icon.png"
w.window.title = "[Project Neonix!]"
w.window.x = nil
w.window.y = nil
w.window.borderless = false
w.window.resizable = false
w.window.fullscreen = false
w.window.depth = 16
--w.window.vsync = 0
--% Debug %--
w.console = love.filesystem.isFused() and false or true
--% Storage %--
w.externalstorage = true
w.identity = "com.kiwiworksinc.projectnx"
--% Modules %--
w.modules.audio = true
w.modules.data = true
w.modules.event = true
w.modules.font = true
w.modules.graphics = true
w.modules.image = true
w.modules.joystick = true
w.modules.keyboard = true
w.modules.math = true
w.modules.mouse = true
w.modules.physics = true
w.modules.sound = true
w.modules.system = true
w.modules.thread = true
w.modules.timer = true
w.modules.touch = true
w.modules.video = true
w.modules.window = true
end