-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconf.lua
More file actions
28 lines (25 loc) · 806 Bytes
/
conf.lua
File metadata and controls
28 lines (25 loc) · 806 Bytes
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
local settings = require('settings')
local version = settings.version
local res = settings.resolution or 'HD'
function love.conf(t)
t.title = "L.C.S. - Version "..version.." - Von Noah, David und Samuel"
t.author = "Noah, David and Samuel"
-- t.console = true
t.identity = "LCS_SAVE_2"
local resolutions = {
HD = {1280, 720},
FHD = {1920, 1080},
QHD = {2560, 1440}
}
t.window.width, t.window.height = unpack(resolutions[res])
t.window.resizable = true
t.window.msaa = 8
t.window.vsync = false
t.window.usedpiscale = false
t.window.borderless = false
t.modules.audio = false
t.modules.joystick = false
t.modules.physics = false
t.modules.sound = false
t.modules.touch = false
end