mattcolman / phaser-list-view

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

Render the a List View on a specific scroll position #25

Closed verybluebot closed 6 years ago

verybluebot commented 6 years ago

The end result is to have the List View rendered in a specific position

Example: I want my list to be scrolled to 34th place of my array

is this possible??

mattcolman commented 6 years ago

yes it is. listView.moveToPosition(34)

verybluebot commented 6 years ago

thanks!