forked from TecProg-grupo4-2018-2/panel-attack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconf.lua
More file actions
32 lines (30 loc) · 1.13 KB
/
conf.lua
File metadata and controls
32 lines (30 loc) · 1.13 KB
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
love.filesystem.setRequirePath("?.lua;?/init.lua;libs/?.lua")
require("game.consts")
function love.conf(t)
t.title = "Panel Attack"
t.author = "sharpobject@gmail.com"
t.url = "https://github.com/panel-attack/panel-attack"
t.window.width = default_width
t.window.height = default_height
t.window.resizable = true
t.modules.audio = true
t.modules.mouse = true
t.modules.sound = true
t.modules.physics = false
t.identity = "Panel Attack"
t.version = "11.3"
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 = true -- 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