davidfig/pixi-viewport

Why wheelDeltaY field is undefined in event object in wheel event handler?

Opened this issue · 1 comments

I need to distinguish whether user is moving viewport with mouse or touchpad, but it seems the only one solution for this is to use wheelDeltaY, however i can't find it in WheelEvent pixi-viewport fires

Are you listening the wheel event this way viewport.on("wheel", (e) => console.log(e))? If you are, then you should check out the documentation of Federated Events system of pixijs, this event if not special to viewport. I suppose that e.nativeEvent is what you are looking for in this case.

Viewport does not listen this event by the way, what viewport does is it attaches wheel event listener to the cavnas, that way it has an original WheelEvent of the browser.