-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmodularous.lua
More file actions
51 lines (40 loc) · 883 Bytes
/
Copy pathmodularous.lua
File metadata and controls
51 lines (40 loc) · 883 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
41
42
43
44
45
46
47
48
49
50
51
MODE_UTIL = {}
SMODS.load_file("content/utilities.lua")()
MODE_UTIL.config = SMODS.current_mod.config
if MODE_UTIL.config.dankpods then
SMODS.load_file("content/dankpods.lua")()
end
if MODE_UTIL.config.lcbbs then
SMODS.load_file("content/lcbbs.lua")()
end
if MODE_UTIL.config.music then
SMODS.load_file("content/music.lua")()
end
if MODE_UTIL.config.nightvale then
assert(SMODS.load_file("content/nightvale.lua"))()
end
if MODE_UTIL.config.extra then
assert(SMODS.load_file("content/extras.lua"))()
end
SMODS.Atlas {
key = "ModeJokers",
path = "ModeJokers.png",
px = 71,
py = 95,
}
SMODS.Atlas {
key = "ModeEnhancements",
path = "ModeEnhancements.png",
px = 71,
py = 95,
}
SMODS.Atlas {
key = 'modicon',
path = "modicon.png",
px = 32,
py = 32
}
SMODS.Sound {
key = "squish",
path = "squish.ogg"
}