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