Good to know. I find using the "visible" Boolean leads to simpler code (removing if statements).
For example, if you want to toggle the visibility you can do:
visible = not visible
Or based on screen bounds
visible = position.x < 1024
Hope that helps