Update Switch
This commit is contained in:
@@ -20,16 +20,28 @@ return function(name, basalt)
|
|||||||
return self
|
return self
|
||||||
end,
|
end,
|
||||||
|
|
||||||
|
getSymbol = function(self)
|
||||||
|
return bgSymbol
|
||||||
|
end,
|
||||||
|
|
||||||
setActiveBackground = function(self, col)
|
setActiveBackground = function(self, col)
|
||||||
activeBG = col
|
activeBG = col
|
||||||
return self
|
return self
|
||||||
end,
|
end,
|
||||||
|
|
||||||
|
getActiveBackground = function(self)
|
||||||
|
return activeBG
|
||||||
|
end,
|
||||||
|
|
||||||
setInactiveBackground = function(self, col)
|
setInactiveBackground = function(self, col)
|
||||||
inactiveBG = col
|
inactiveBG = col
|
||||||
return self
|
return self
|
||||||
end,
|
end,
|
||||||
|
|
||||||
|
getInactiveBackground = function(self)
|
||||||
|
return inactiveBG
|
||||||
|
end,
|
||||||
|
|
||||||
|
|
||||||
load = function(self)
|
load = function(self)
|
||||||
self:listenEvent("mouse_click")
|
self:listenEvent("mouse_click")
|
||||||
|
|||||||
Reference in New Issue
Block a user