Files
MuHua-Core/Packages/UITool/Runtime/ModuleTools/UIDirection.cs
T
MuHua-123 5e819d5257 1
2025-03-07 19:20:55 +08:00

19 lines
328 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace MuHua {
/// <summary>
/// 方向
/// </summary>
public enum UIDirection {
FromLeftToRight = 0,
FromRightToLeft = 1,
FromTopToBottom = 2,
FromBottomToTop = 3,
HorizontalAndVertical = 4,
Horizontal = 5,
Vertical = 6,
}
}