Type Boolean Object DisplayObject Library display.* Revision Release 2025.3721 Keywords visibility, object visible, invisible See also object.alpha 
Controls whether the object is visible on the screen. The property is also readable. The default is true.
local rect1 = display.newRect( 100, 100, 50, 50 ) rect1:setFillColor( 0.7 ) local rect2 = display.newRect( 150, 100, 50, 50 ) rect2:setFillColor( 1, 0, 0, 0.6 ) rect2.isVisible = false