Files
Cielonos/Assets/OtherPlugins/com.unity.uiextensions/Runtime/Scripts/Layout/FancyScrollView/Scroller/MovementDirection.cs

13 lines
251 B
C#
Raw Normal View History

2025-11-25 08:19:33 -05:00
/// Credit setchi (https://github.com/setchi)
/// Sourced from - https://github.com/setchi/FancyScrollView
namespace UnityEngine.UI.Extensions
{
public enum MovementDirection
{
Left,
Right,
Up,
Down,
}
}