-
Notifications
You must be signed in to change notification settings - Fork 2
/
conf.lua
46 lines (38 loc) · 2.6 KB
/
conf.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
function love .conf(t)
local w = t .window
local m = t .modules
w .title = 'Löve theSegSat'
w .icon = 'icon.png'
w .width = 1200
w .height = 800
--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
t .version = '0.10.2' -- The LÖVE version this game was made for (string)
t .identity = 'theSegSat' -- The name of the save directory (string)
t .externalstorage = true -- True to save files (and read from the save directory)
--- in external storage on Android (boolean)
m .timer = true -- Provides high-resolution timing functionality,
--- Disabling it will result 0 delta time in love.update
m .event = true -- Manages events, like keypresses.
m .math = true -- Provides system-independent mathematical functions.
m .mouse = true -- Provides an interface to the user's mouse.
m .keyboard = true -- Provides an interface to the user's keyboard.
m .joystick = false -- Provides an interface to connected joysticks.
m .touch = false -- Provides an interface to touch-screen presses.
m .window = true -- Provides an interface for modifying and retrieving information about the program's window.
m .image = true -- Provides an interface to decode encoded image data.
m .graphics = true -- The primary responsibility for the love.graphics module is the drawing of
--- lines, shapes, text, Images and other Drawable objects onto the screen.
--- Its secondary responsibilities include loading external files
--- including Images and Fonts) into memory, creating specialized objects
--- (such as ParticleSystems or Canvases) and managing screen geometry.
m .sound = false -- This module is responsible for decoding sound files.
--- It can't play the sounds, see love.audio for that.
m .audio = false -- Provides an interface to output sound to the user's speakers.
m .video = false -- This module is responsible for decoding, controlling, and streaming video files.
m .physics = false -- Can simulate 2D rigid body physics in a realistic manner.
--- This module is based on Box2D
m .system = false -- Provides access to information about the user's system.
m .thread = false -- Allows you to work with threads.
-- filesystem ** Provides an interface to the user's filesystem.
-- font ** Allows you to work with fonts.
end