-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.lua
More file actions
40 lines (35 loc) · 895 Bytes
/
settings.lua
File metadata and controls
40 lines (35 loc) · 895 Bytes
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
local settings = {
showGrid = true,
showOutlines = true,
showGhost = true,
hDropEffect = true,
coloredHDropEffect = true,
perspBlocks = true,
lineEffect = true,
lineParticles = true,
lockEffect = 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