17 lines
410 B
C#
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;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|