mirror of
https://github.com/kennethreitz/super-sphere.git
synced 2026-06-05 15:10:18 +00:00
44 lines
2.8 KiB
Lua
44 lines
2.8 KiB
Lua
function love.conf(t)
|
|
|
|
t.identity = "super_sphere" -- The name of the save directory (string)
|
|
-- t.version = "0.9" -- The LÖVE version this game was made for (string)
|
|
t.console = false -- Attach a console (boolean, Windows only)
|
|
t.author = "KennethReitz" -- Who made this?
|
|
-- t.window.title = "Love Block" -- The window title (string)
|
|
-- t.window.icon = "love_block.png" -- Filepath to an image to use as the window's icon (string)
|
|
|
|
-- customize
|
|
t.window.borderless = true -- Remove all border visuals from the window (boolean)
|
|
t.window.fullscreentype = "desktop" -- Standard fullscreen or desktop fullscreen mode (string)
|
|
t.window.vsync = true -- Enable vertical sync (boolean)
|
|
t.window.fsaa = 16 -- 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.srgb = false -- Enable sRGB gamma correction when drawing to the screen (boolean). Added in 0.9.1
|
|
|
|
-- no touching
|
|
t.window.resizable = false -- Let the window be user-resizable (boolean)
|
|
t.window.highdpi = true -- Enable high-dpi mode for the window on a Retina display (boolean). Added in 0.9.1
|
|
-- 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)
|
|
|
|
-- Not-Yet-Needed Modules
|
|
t.modules.audio = true -- Enable the audio module (boolean)
|
|
t.modules.physics = false -- Enable the physics module (boolean)
|
|
t.modules.sound = true -- Enable the sound module (boolean)
|
|
t.modules.math = false -- Enable the math module (boolean)
|
|
-- Very-Much-Needed Modules
|
|
t.modules.joystick = true -- Enable the joystick module (boolean)
|
|
t.modules.event = true -- Enable the event module (boolean)
|
|
t.modules.image = true -- Enable the image module (boolean)
|
|
t.modules.timer = true -- Enable the timer module (boolean)
|
|
t.modules.graphics = true -- Enable the graphics module (boolean)
|
|
t.modules.keyboard = true -- Enable the keyboard module (boolean)
|
|
t.modules.mouse = true -- Enable the mouse module (boolean)
|
|
t.modules.system = true -- Enable the system module (boolean)
|
|
t.modules.window = true -- Enable the window module (boolean)
|
|
|
|
t.window.width = 0 -- The window width (number)
|
|
t.window.height = 0 -- The window height (number)
|
|
t.window.fullscreen = true -- Enable fullscreen (boolean)
|
|
|
|
end |