-
Notifications
You must be signed in to change notification settings - Fork 1
/
conf.lua
31 lines (29 loc) · 1.98 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
function love.conf(t)
t.identity = nil -- The name of the save directory (string)
t.version = "0.9.2" -- The LÖVE version this game was made for (string)
t.console = false -- Attach a console (boolean, Windows only)
t.gammacorrect = true -- Enable gamma-correct rendering, when supported by the system (boolean)
t.window.title = "Cult" -- The window title (string)
t.window.icon = nil -- Filepath to an image to use as the window's icon (string)
t.window.width = 1000 -- The window width (number)
t.window.height = 700 -- The window height (number)
t.window.borderless = false -- Remove all border visuals from the window (boolean)
t.window.resizable = false -- Let the window be user-resizable (boolean)
t.window.fullscreen = false -- Enable fullscreen (boolean)
t.window.vsync = true -- Enable vertical sync (boolean)
t.window.msaa = 0 -- The number of samples to use with multi-sampled antialiasing (number)
t.window.display = 1 -- Index of the monitor to show the window in (number)
t.window.highdpi = true -- Enable high-dpi mode for the window on a Retina display (boolean)
t.window.fullscreen = false
t.releases = {
title = "Cult", -- The project title (string)
package = "cult", -- The project command and package name (string)
loveVersion = "0.9.2" , -- The project LÖVE version
version = "1.0", -- The project version
author = "Joan Fons & Aina Soler", -- Your name (string)
email = "[email protected]",
description = "Result of Game Jam Barcelona 2016", -- The project description (string)
homepage = "http://globalgamejam.org/2016/games/cult", -- The project homepage (string)
releaseDirectory = "releases", -- Where to store the project releases (string)
}
end