aboutsummaryrefslogtreecommitdiffstats
path: root/conf.lua
diff options
context:
space:
mode:
Diffstat (limited to 'conf.lua')
-rw-r--r--conf.lua22
1 files changed, 22 insertions, 0 deletions
diff --git a/conf.lua b/conf.lua
new file mode 100644
index 0000000..fa40609
--- /dev/null
+++ b/conf.lua
@@ -0,0 +1,22 @@
+
+function love.conf(t)
+ t.identity = nil -- The name of the save directory (string)
+ t.version = "0.9.0" -- The LÖVE version this game was made for (string)
+ t.console = false -- Attach a console (boolean, Windows only)
+
+ t.window.title = "Mastermind" -- The window title (string)
+ t.window.icon = nil -- Filepath to an image to use as the window's icon (string)
+ t.window.width = 640 -- The window width (number)
+ t.window.height = 640 -- The window height (number)
+ t.window.borderless = false -- Remove all border visuals from the window (boolean)
+ t.window.resizable = true -- Let the window be user-resizable (boolean)
+ t.window.minwidth = 1 -- Minimum window width if the window is resizable (number)
+ t.window.minheight = 1 -- Minimum window height if the window is resizable (number)
+ t.window.fullscreen = false -- Enable fullscreen (boolean)
+ t.window.fullscreentype = "normal" -- Standard fullscreen or desktop fullscreen mode (string)
+ t.window.vsync = true -- Enable vertical sync (boolean)
+ t.window.fsaa = 4 -- 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 = false -- Enable high-dpi mode for the window on a Retina display (boolean). Added in 0.9.1
+ t.window.srgb = false -- Enable sRGB gamma correction when drawing to the screen (boolean). Added in 0.9.1
+end