aboutsummaryrefslogtreecommitdiffstats
path: root/conf.lua
diff options
context:
space:
mode:
authorpiernov <piernov@piernov.org>2014-05-12 13:00:01 +0200
committerpiernov <piernov@piernov.org>2014-05-12 13:00:01 +0200
commite72226dbf8f61dacc2fe4d18297807faa27b207f (patch)
tree82fe32b0e1b594c5c7241353ba1685d1f50818ee /conf.lua
parent344b536979556aa2cfec0f9b16d6140e8fed9fe5 (diff)
downloadMastermind-e72226dbf8f61dacc2fe4d18297807faa27b207f.tar.gz
Mastermind-e72226dbf8f61dacc2fe4d18297807faa27b207f.tar.bz2
Mastermind-e72226dbf8f61dacc2fe4d18297807faa27b207f.tar.xz
Mastermind-e72226dbf8f61dacc2fe4d18297807faa27b207f.zip
Multiplayer mode + various improvement
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