-
Notifications
You must be signed in to change notification settings - Fork 10
/
conf.lua
28 lines (27 loc) · 1.03 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
function love.conf(t)
t.title = "Panel Attack"
t.author = "[email protected]"
t.url = "https://github.com/sharpobject/panel-attack"
t.window.width = 819
t.window.height = 612
t.modules.audio = false
t.modules.mouse = true
t.modules.sound = false
t.modules.physics = false
t.identity = "Panel Attack"
t.version = "0.9.0"
t.release = false
t.externalstorage = true
-- DEFAULTS FROM HERE DOWN
local window = t.window or t.screen
window.vsync = true -- Enable vertical sync (boolean)
window.fullscreen = false -- Enable fullscreen (boolean)
window.fsaa = 0 -- The number of FSAA-buffers (number)
t.console = false -- Attach a console (boolean, Windows only)
t.modules.joystick = true
t.modules.timer = true -- Enable the timer module (boolean)
t.modules.image = true -- Enable the image module (boolean)
t.modules.graphics = true -- Enable the graphics module (boolean)
t.modules.keyboard = true -- Enable the keyboard module (boolean)
t.modules.event = true
end