IVisible
Introduction
The IVisible interface is an interface which defines that an object must have a Visible property. Setting Visible to true or false will make the object appear or disappear visually. Most visual FlatRedBall types implement the IVisible property including:
Code Example
The following code shows how to toggle a Sprite's visibility when the mouse is clicked:
IVisible and Parenting
The Visible property on an IVisible controls whether an object will be drawn, but it also controls whether all of its children will be drawn. Therefore, if an object (such as a Glue Entity) implements IVisible, and if its Visible is set to false, then all attached objects will also be invisible. This behavior simplifies making UI objects (such as Pause menus) which many be made up of multiple levels of UI elements.
This behavior can be modified through the IgnoresParentVisibility property.
IVisible Members
Did this article leave any questions unanswered? Post any question in our forums for a rapid response.
Last updated