-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdrawstep.lua
More file actions
48 lines (46 loc) · 1.14 KB
/
Copy pathdrawstep.lua
File metadata and controls
48 lines (46 loc) · 1.14 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
SMODS.DrawStep {
key = 'jand_danbo_use',
order = -30,
func = function(self)
if self.children.joker_button then
if self.highlighted then
self.children.joker_button:draw()
else
self.children.joker_button:remove()
self.children.joker_button = nil
end
end
if self.children.joker_button then
if self.highlighted then
self.children.joker_button:draw()
else
self.children.joker_button:remove()
self.children.joker_button = nil
end
end
end,
}
SMODS.DrawStep {
key = 'nikola_shop_ui',
order = -30,
func = function(self)
if self.children.lv_price then
self.children.lv_price:draw()
end
if self.children.buy_lv then
self.children.buy_lv:draw()
end
end,
}
SMODS.DrawStep {
key = 'revo_shop_ui',
order = -30,
func = function(self)
if self.children.rbs_price then
self.children.rbs_price:draw()
end
if self.children.rbs_buy then
self.children.rbs_buy:draw()
end
end,
}