32 lines
950 B
C#
32 lines
950 B
C#
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace UnityEngine.UI.Extensions.Examples
|
|
{
|
|
public class Example03ScrollView : FancyScrollView<Example03CellDto, Example03ScrollViewContext>
|
|
{
|
|
[SerializeField]
|
|
ScrollPositionController scrollPositionController;
|
|
|
|
void Awake()
|
|
{
|
|
scrollPositionController.OnUpdatePosition(p => UpdatePosition(p));
|
|
SetContext(new Example03ScrollViewContext { OnPressedCell = OnPressedCell });
|
|
}
|
|
|
|
public void UpdateData(List<Example03CellDto> data)
|
|
{
|
|
cellData = data;
|
|
scrollPositionController.SetDataCount(cellData.Count);
|
|
UpdateContents();
|
|
}
|
|
|
|
void OnPressedCell(Example03ScrollViewCell cell)
|
|
{
|
|
scrollPositionController.ScrollTo(cell.DataIndex, 0.4f);
|
|
Context.SelectedIndex = cell.DataIndex;
|
|
UpdateContents();
|
|
}
|
|
}
|
|
}
|