/// Credit setchi (https://github.com/setchi) /// Sourced from - https://github.com/setchi/FancyScrollView using System; namespace UnityEngine.UI.Extensions { /// /// のコンテキスト基底クラス. /// public class FancyScrollRectContext : IFancyScrollRectContext { ScrollDirection IFancyScrollRectContext.ScrollDirection { get; set; } Func<(float ScrollSize, float ReuseMargin)> IFancyScrollRectContext.CalculateScrollSize { get; set; } } }