Type Boolean Object DisplayObject Library display.* Revision 2017.3060 Keywords hit test, touchable, touches See also object.isHitTestMasked
Allows an object to continue to receive hit events even if it is not visible. If true
, objects will receive hit events regardless of visibility; if false
, events are only sent to visible objects. Defaults to false
.
This property only comes into play if the object is not visible.
local circle = display.newCircle( 100, 100, 50 ) circle:setFillColor( 1, 0, 0 ) circle.isVisible = false circle.isHitTestable = true