-
Notifications
You must be signed in to change notification settings - Fork 0
/
conf.lua
executable file
·46 lines (40 loc) · 1.07 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
42
43
44
45
46
local info = require("data/info")
function love.conf(t)
t.version = "11.4"
-- Modules:
t.modules.audio = true
t.modules.data = true
t.modules.event = true
t.modules.font = true
t.modules.graphics = true
t.modules.image = true
t.modules.joystick = false
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.thread = true
t.modules.timer = true
t.modules.touch = false
t.modules.video = false
t.modules.window = true
-- Storage:
t.identity = string.lower(info.credits.code[1])..".floppybird"
t.externalstorage = true
t.console = false
-- Permissions:
t.accelerometerjoystick = false
t.audio.mic = false
t.audio.mixwithsystem = true
-- Window:
local w, h = 700, 900
t.window.title = info.title .. " v" .. info.version
t.window.icon = "assets/img/icon.png"
t.window.width = w
t.window.height = h
t.window.resizable = true
t.window.minwidth = w
t.window.minheight = h
end