-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconf.lua
More file actions
53 lines (44 loc) · 1.21 KB
/
conf.lua
File metadata and controls
53 lines (44 loc) · 1.21 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
display = {}
require "love.window"
local w, h = love.window.getDesktopDimensions()
function love.conf(t)
display.width = 2000
display.height = 1000
t.window.title = "Suyu Engine"
t.window.icon = "/res/images/icons/app-icon.png"
t.window.width = w / 2
t.window.height = h / 2
t.window.minwidth = w /5
t.window.minheight = h / 5
t.window.resizable = true
t.window.borderless = false
t.window.fullscreen = true
t.window.fullscreentype = "desktop"
t.highdpi = false
t.window.msaa = 0
t.window.usedpiscale = false
t.window.vsync = 0 -- false
t.window.x = nil
t.window.y = nil
t.window.centered = true
t.version = "11.4"
t.console = false
t.audio.muc = false
t.audio.mixwithsystem = false
t.modules.audio = true
t.modules.event = 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 = true
t.modules.video = true
t.modules.window = true
end