Ignore events for invisible elements

This commit is contained in:
Gabriel Tofvesson 2024-10-12 23:28:47 +02:00
parent 17a6d0f9fa
commit 3a7b2cd252

View File

@ -7,6 +7,7 @@ Visibility.INVISIBLE = not Visibility.VISIBLE
function Visibility:with(elementType)
local propSelf = self
local defaultDraw = elementType.draw
local defaultHandleEvent = elementType.handleEvent
function elementType:isVisible()
return propSelf:getState(self)
@ -23,6 +24,14 @@ function Visibility:with(elementType)
return false
end
-- Ignore events when invisible
function elementType:handleEvent(evt)
if self:isVisible() then
return defaultHandleEvent(self, evt)
end
return false
end
return elementType
end