Add button:GetDown

This commit is contained in:
Kenny Shields 2014-06-29 12:58:59 -04:00
parent 71c7e911d9
commit e975a11247

View File

@ -248,3 +248,14 @@ function newobject:GetEnabled()
return self.enabled
end
--[[---------------------------------------------------------
- func: GetDown()
- desc: gets whether or not the object is currently
being pressed
--]]---------------------------------------------------------
function newobject:GetDown()
return self.down
end