namespace Unity.VisualScripting
{
public enum AlignOperation
{
///
/// Align the left edges of the selected elements.
///
AlignLeftEdges,
///
/// Align the horizontal centers of the selected elements.
///
AlignCenters,
///
/// Align the right edges of the selected elements.
///
AlignRightEdges,
///
/// Align the top edges of the selected elements.
///
AlignTopEdges,
///
/// Align the vertical middles of the selected elements.
///
AlignMiddles,
///
/// Align the bottom edges of the selected elements.
///
AlignBottomEdges
}
}