mattcolman / phaser-list-view

List view class for Phaser. Great for high scoreboards.
http://mattcolman.com/labs/phaser-list-view/index.html
MIT License
114 stars 22 forks source link

Render ListItem to specific position #23

Closed verybluebot closed 6 years ago

verybluebot commented 6 years ago

Is it possible to render the ListView to be scrolled to item N of the given list?

for example: I want the list to be focused on item number 26 when showing the first time

Thanks

mattcolman commented 6 years ago

Hi. I just released v1.5.1 with some new features to help you. You can now call listView.tweenToItem(26, 1) to tween to item number 26 in 1 second. Or to just start there listView.moveToItem(26)

I've also improved the docs so check it out!