namespace Rive.Components
{
///
/// Determines how the visibility optimization should behave
///
public enum VisibilityOptimizationMode
{
///
/// Only renders when the gameobject is rendering
///
RenderWhenVisible = 0,
///
/// Always renders regardless of gameobject's visibility
///
AlwaysRender = 1
}
}