Infinity ScrollView for UGUI. It helps the UGUI ScrollRect to support any count items.
- Support any count items.
- Support Vertical/Horizontal/Gride Layout Group.
- Auto hide invisible items.
- Use ObjectPool(Open source) to cache items.
- Add
Virtual(Vertical/Horizontal/Gride)LayoutGroup
andUIList
to the ScrollRect's content gameobject. - Get
UIList
component and callInitListView(int len)
method to generate items. - There are two event you can listen in
UIList
:
public event Action<int, RectTransform> OnItemCreated;
public event Action<int> OnItemHided;
You must import ObjectPool(Open source) module.