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

18 lines
354 B
C#

using UnityEngine.Events;
namespace AlicizaX.UI
{
public interface IScroller
{
float Position { get; set; }
void ScrollTo(float position, bool smooth = false);
}
public class ScrollerEvent : UnityEvent<float> { }
public class MoveStopEvent : UnityEvent { }
public class DraggingEvent : UnityEvent<bool> { }
}