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 scrolling with the mouse content jumps on x #52

Closed IJsLauw closed 2 years ago

IJsLauw commented 2 years ago

Why is that? Seems like some clamping takes effect when you scroll the mousewheel. Dragging works as expected. Can I disable the mousewheel as a quick fix?

Like so?

scrollbox.content.drag({wheel: false})

Ok explaining it made me try clampWheel: false, that did the trick.