update conf.lua
s-ol
3 years ago
0 | 0 | function love.conf(t) |
1 | t.identity = nil -- The name of the save directory (string) | |
2 | t.appendidentity = false -- Search files in source directory before save directory (boolean) | |
3 | 1 | t.version = "11.0" -- The LÖVE version this game was made for (string) |
4 | t.console = false -- Attach a console (boolean, Windows only) | |
5 | t.accelerometerjoystick = true -- Enable the accelerometer on iOS and Android by exposing it as a Joystick (boolean) | |
6 | t.externalstorage = false -- True to save files (and read from the save directory) in external storage on Android (boolean) | |
7 | t.gammacorrect = false -- Enable gamma-correct rendering, when supported by the system (boolean) | |
2 | t.console = true -- Attach a console (boolean, Windows only) | |
8 | 3 | |
9 | t.audio.mixwithsystem = true -- Keep background music playing when opening LOVE (boolean, iOS and Android only) | |
10 | ||
11 | t.window.title = "Untitled" -- The window title (string) | |
12 | t.window.icon = nil -- Filepath to an image to use as the window's icon (string) | |
4 | t.identity = "watch-cad" -- The name of the save directory (string) | |
5 | t.window.title = "watch-cad" -- The window title (string) | |
13 | 6 | t.window.width = 800 -- The window width (number) |
14 | 7 | t.window.height = 600 -- The window height (number) |
15 | t.window.borderless = false -- Remove all border visuals from the window (boolean) | |
16 | t.window.resizable = false -- Let the window be user-resizable (boolean) | |
17 | t.window.minwidth = 1 -- Minimum window width if the window is resizable (number) | |
18 | t.window.minheight = 1 -- Minimum window height if the window is resizable (number) | |
19 | t.window.fullscreen = false -- Enable fullscreen (boolean) | |
20 | t.window.fullscreentype = "desktop" -- Choose between "desktop" fullscreen or "exclusive" fullscreen mode (string) | |
8 | t.window.resizable = true -- Let the window be user-resizable (boolean) | |
9 | t.window.minwidth = 100 -- Minimum window width if the window is resizable (number) | |
10 | t.window.minheight = 100 -- Minimum window height if the window is resizable (number) | |
21 | 11 | t.window.vsync = 0 -- Vertical sync mode (number) |
22 | 12 | t.window.msaa = 0 -- The number of samples to use with multi-sampled antialiasing (number) |
23 | t.window.depth = nil -- The number of bits per sample in the depth buffer | |
24 | t.window.stencil = nil -- The number of bits per sample in the stencil buffer | |
25 | t.window.display = 1 -- Index of the monitor to show the window in (number) | |
26 | 13 | t.window.highdpi = false -- Enable high-dpi mode for the window on a Retina display (boolean) |
27 | t.window.x = nil -- The x-coordinate of the window's position in the specified display (number) | |
28 | t.window.y = nil -- The y-coordinate of the window's position in the specified display (number) | |
29 | 14 | |
30 | t.modules.audio = true -- Enable the audio module (boolean) | |
31 | t.modules.data = true -- Enable the data module (boolean) | |
32 | t.modules.event = true -- Enable the event module (boolean) | |
33 | t.modules.font = true -- Enable the font module (boolean) | |
34 | t.modules.graphics = true -- Enable the graphics module (boolean) | |
35 | t.modules.image = true -- Enable the image module (boolean) | |
36 | t.modules.joystick = true -- Enable the joystick module (boolean) | |
37 | t.modules.keyboard = true -- Enable the keyboard module (boolean) | |
38 | t.modules.math = true -- Enable the math module (boolean) | |
39 | t.modules.mouse = true -- Enable the mouse module (boolean) | |
40 | t.modules.physics = true -- Enable the physics module (boolean) | |
41 | t.modules.sound = true -- Enable the sound module (boolean) | |
42 | t.modules.system = true -- Enable the system module (boolean) | |
43 | t.modules.thread = true -- Enable the thread module (boolean) | |
44 | t.modules.timer = true -- Enable the timer module (boolean), Disabling it will result 0 delta time in love.update | |
45 | t.modules.touch = true -- Enable the touch module (boolean) | |
46 | t.modules.video = true -- Enable the video module (boolean) | |
47 | t.modules.window = true -- Enable the window module (boolean) | |
15 | t.modules.data = false -- Enable the data module (boolean) | |
16 | t.modules.joystick = false -- Enable the joystick module (boolean) | |
17 | t.modules.video = false -- Enable the video module (boolean) | |
18 | t.modules.physics = false -- Enable the physics module (boolean) | |
48 | 19 | end |