-
Notifications
You must be signed in to change notification settings - Fork 11
/
.luarc.json
56 lines (46 loc) · 1.23 KB
/
.luarc.json
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
{
"Lua.diagnostics.globals": [
"playdate", "class", "kTextAlignment",
"savedData",
"loadData",
"saveData",
"commmitSaveData",
"highscore",
"gridXCount", "gridYCount",
"pieceXCount", "pieceYCount",
"uiBlockSize",
"defaultBlockSize",
"bigBlockSize",
"blockSize",
"drawBlock",
"drawTexturedBlock",
"loopThroughPieceBlocks",
"maxLockDelayRotations",
"shake", "sash", "ghost", "grid", "darkMode", "inverseRotation",
"musicVolume", "soundsVolume", "bigBlocks", "chill_mode",
"offsetX", "offsetY",
"menuBackground",
"piece",
"lost",
"updateGame", "drawGame",
"updateMenu", "drawMenu",
"_update", "_draw",
"crossmarkImage",
"crossmarkFieldImage",
"ghostBlockImagetable",
"ghostBlockImagetableBig",
"gridImage", "gridImageBig",
"inertGridImage", "inertGridImageBig",
"menuBackground",
"comboSounds",
"currentSong",
"dropSound", "specialSound", "holdSound", "spinSound", "moveSound",
"menuScrollSound", "menuClickSound",
"sfx",
"load_theme", "generate_theme_list",
"inputHandlers",
"refreshNeeded", "screenClearNeeded", "forceInertGridRefresh"
],
"Lua.workspace.library": [ "$PLAYDATE_SDK_PATH/CoreLibs/__stub.lua", ],
"Lua.runtime.special": { "import": "require" },
}