com.alicizax.unity.ui.exten.../Runtime/RecyclerView/Interaction/ItemInteractionFlags.cs
陈思海 dc8c840d69 RecyclerView 大优化
优化RecycleView 渲染架构
优化RecyclerView 渲染性能 增加 缓存 异步
增加Navagation导航锚点相关
2026-03-31 15:18:50 +08:00

22 lines
415 B
C#

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,
}
}