// 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
{
/// Distribution options
public enum Distribute
{
/// Vertical Distribute Top
VerticalTop = 0,
/// Vertical Distribute Center
VerticalCenter = 1,
/// Vertical Distribute Bottom
VerticalBottom = 2,
/// Horizontal Distribute Left
HorizontalLeft = 3,
/// Horizontal Distribute Center
HorizontalCenter = 4,
/// Horizontal Distribute Right
HorizontalRight = 5
}
}