com.unity.uiextensions.nosa.../Runtime/Scripts/Layout/FancyScrollView/ScrollRect/FancyScrollRectContext.cs

16 lines
565 B
C#
Raw Normal View History

2019-11-16 22:49:21 +08:00
/// Credit setchi (https://github.com/setchi)
/// Sourced from - https://github.com/setchi/FancyScrollView
using System;
namespace UnityEngine.UI.Extensions
{
/// <summary>
/// <see cref="FancyScrollRect{TItemData, TContext}"/> のコンテキスト基底クラス.
/// </summary>
2019-11-16 22:49:21 +08:00
public class FancyScrollRectContext : IFancyScrollRectContext
{
ScrollDirection IFancyScrollRectContext.ScrollDirection { get; set; }
2019-11-16 22:49:21 +08:00
Func<(float ScrollSize, float ReuseMargin)> IFancyScrollRectContext.CalculateScrollSize { get; set; }
}
}