com.alicizax.unity.ui.exten.../Runtime/RecyclerView/Interaction/ItemInteractionFlags.cs

22 lines
415 B
C#
Raw Permalink Normal View History

using System;
namespace AlicizaX.UI
{
[Flags]
public enum ItemInteractionFlags
{
None = 0,
PointerClick = 1 << 0,
PointerEnter = 1 << 1,
PointerExit = 1 << 2,
Select = 1 << 3,
Deselect = 1 << 4,
Move = 1 << 5,
BeginDrag = 1 << 6,
Drag = 1 << 7,
EndDrag = 1 << 8,
Submit = 1 << 9,
Cancel = 1 << 10,
}
}