OldBlueWater/BlueWater/Assets/Doozy/Runtime/UIDesigner/Enums/AlignMode.cs

15 lines
460 B
C#
Raw Normal View History

namespace Doozy.Runtime.UIDesigner
{
/// <summary> Describes the possible align modes </summary>
public enum AlignMode
{
/// <summary> Aligns the item on the inside of the target </summary>
Inside = 0,
/// <summary> Aligns the item's center on the edge of the target </summary>
Center = 1,
/// <summary> Aligns the item on the outside of the target </summary>
Outside = 2
}
}