OldBlueWater/BlueWater/Assets/Doozy/Runtime/UIDesigner/Enums/AlignMode.cs
2023-08-02 15:08:03 +09:00

15 lines
460 B
C#

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
}
}