gui/OldStuff/GuiManager/Misc/IsHovering.int
2022-01-16 22:40:22 -05:00

3 lines
182 B
Plaintext

function gui:IsHovering()
return (love.mouse.getX() > self.x and love.mouse.getX() < self.x+self.width and love.mouse.getY() > self.y and love.mouse.getY() < self.y+self.height)
end