davidfig / pixi-scrollbox

a scrollbox built for pixi.js using a masked box that scrolls vertically and/or horizontally with optional scrollbars
https://www.npmjs.com/package/pixi-scrollbox
MIT License
171 stars 33 forks source link

when page destroy,the scrollbox's updateLoop will go on #46

Closed evenle closed 2 years ago

evenle commented 2 years ago

when page destroy,the scrollbox's updateLoop will go on how to stoy it,thanks

davidfig commented 2 years ago

Remove the scrollbox from the ticker: PIXI.Ticker.shared.remove(scrollbox.tickerFunction)

evenle commented 2 years ago

thanks