aboutsummaryrefslogtreecommitdiffstats
path: root/conf.lua
diff options
context:
space:
mode:
Diffstat (limited to 'conf.lua')
-rw-r--r--conf.lua12
1 files changed, 9 insertions, 3 deletions
diff --git a/conf.lua b/conf.lua
index fa40609..17f7461 100644
--- a/conf.lua
+++ b/conf.lua
@@ -1,11 +1,17 @@
+--[[
+ conf.lua
+ Core configuration file
+ by piernov
+]]--
+
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.title = "BlueMind" -- The window title (string)
+ t.window.icon = "Resources/BlueMind.png" -- 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)
@@ -15,7 +21,7 @@ function love.conf(t)
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.fsaa = 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 = 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