pixi-viewport icon indicating copy to clipboard operation
pixi-viewport copied to clipboard

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

Open RhapsodY-69 opened this issue 2 years ago • 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

RhapsodY-69 avatar Sep 11 '23 11:09 RhapsodY-69

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.

blnvdanil avatar Sep 12 '23 13:09 blnvdanil