-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.lua
More file actions
64 lines (55 loc) · 1.43 KB
/
settings.lua
File metadata and controls
64 lines (55 loc) · 1.43 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
local gCol = require "lua.gCol"
local settings = {
showGrid = true,
showOutlines = true,
perspBlocks = true,
showGhost = true,
hDropEffect = true,
coloredHDropEffect = true,
--TODO: Finish all spin support
detectAllSpin = false,
--TODO: Fix broken smooth fall effect
-- unimplemented now
smoothFall = false,
fpsTarget = 60,
bgFilter = 0.5,
bgCol = {
gCol.bgB,
gCol.bg,
},
-- accessibility features
shakeInt = 1, -- preferrably values ranged at 0 - 1.49
disableColorFlashes = false,
disableAftrImg = false,
disablePPSCol = false,
lineEffect = true,
lineParticles = true,
lockEffect = true,
shakeBoard = true,
--TODO: Add function to disable locking shake effect
shakeDrop = true,
showDanger = true,
-- danger block from hold queue
showHoldDgr = true,
showKOverlay = true,
aKOverPos = true,
-- small timer text
altTimerUI = true,
qRestartTime = 0.4,
scale = 1,
--TODO: Implement game UI scale
uiScale = 1,
rotSys = "SRS", -- "ARS", "SRS"
bagType = "modern", -- "modern", "classicM", "classicRand"
useIRS = true,
-- only line particle animation speed
fastAnim = false,
-- broken for now
useVSync = true,
-- for txt info (debug only)
freezeTxt = false,
-- for current piece (debug only)
showEmpty = false,
isDebug = true,
}
return settings