-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconf.lua
More file actions
34 lines (32 loc) · 1.15 KB
/
conf.lua
File metadata and controls
34 lines (32 loc) · 1.15 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
function love.conf(t)
local game_title = "Hooked - 7DRL"
t.window.title = game_title
t.window.minwidth = 1280
t.window.minheight = 720
t.console = false
t.window.fullscreen = false
-- t.window.msaa = 16
t.releases = {
title = game_title, -- The project title (string)
package = nil, -- The project command and package name (string)
loveVersion = 11.3, -- The project LÖVE version
version = "0.1", -- The project version
author = "Tom Smallridge", -- Your name (string)
email = "tom@smallridge.com.au", -- Your email (string)
description = "Hooked - 7DRL", -- The project description (string)
homepage = "https://example.com", -- The project homepage (string)
identifier = "sundowns.7drl", -- The project Uniform Type Identifier (string)
excludeFileList = {
".git",
"tests",
".luacheckrc",
"README.md",
".vscode",
".circleci",
".gitignore",
"tmp",
"*.tmx"
},
releaseDirectory = "dist" -- Where to store the project releases (string)
}
end