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)LayoutGroupandUIListto the ScrollRect's content gameobject. - Get
UIListcomponent 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.