pixijs / ui

Commonly used UI components for PixiJS

Home Page:https://pixijs.io/ui/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is there support for virtual scrolling in ScrollBox

jickchen34 opened this issue · comments

I am currently working with ScrollBox and need to handle large datasets efficiently. I would like to know whether ScrollBox supports virtual scrolling.

Something like position.x, position.y and position.set(x,y) would have been very helpful.

There is a scrollTo method (https://pixijs.io/ui/ScrollBox.html). The issue with performance is that all the items are rendered when scrolling. You will have to extend it to implement what you need.

I managed to get the y position by listening to scrollBox.items[0].parent.y inside a ticker. I guess in my case is a rare one where I want to set the scroll start y position to a specific pixel.