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

17 lines
410 B
C#

using UnityEngine.UI;
namespace AlicizaX.UI
{
public sealed class RecyclerItemSelectable : Selectable
{
protected override void Awake()
{
base.Awake();
transition = Transition.None;
Navigation disabledNavigation = navigation;
disabledNavigation.mode = Navigation.Mode.None;
navigation = disabledNavigation;
}
}
}