// Copyright (c) 2015 - 2023 Doozy Entertainment. All Rights Reserved.
// This code can only be used under the standard Unity Asset Store End User License Agreement
// A Copy of the EULA APPENDIX 1 is available at http://unity3d.com/company/legal/as_terms
namespace Doozy.Runtime.UIDesigner
{
/// Alignment options
public enum Align
{
/// Align to the left on the x axis
HorizontalLeft = 0,
/// Align to the center on the x axis
HorizontalCenter = 1,
/// Align to the right on the x axis
HorizontalRight = 2,
/// Align to the top on the y axis
VerticalTop = 3,
/// Align to the center on the y axis
VerticalCenter = 4,
/// Align to the bottom on the y axis
VerticalBottom = 5
}
}