namespace EPOOutline
{
///
/// The bounds mode that is going to be used for bounds calculation for renderers.
///
public enum BoundsMode
{
///
/// The bounds are going to be taken from the renderer itself.
///
Default,
///
/// The bounds are going to be taken from the renderer, but it will be recalculated each time.
///
ForceRecalculate,
///
/// The bounds are going to be set manually.
///
Manual
}
}