pixijs / layers

Separate the z-hierarchy of your scene tree from its canonical structure.
https://pixijs.io/layers/docs/
MIT License
222 stars 57 forks source link

data object missing from InteractionManager #13

Closed tjgionet closed 7 years ago

tjgionet commented 7 years ago

this was fixed in pixi.js as addressed in "Make Interaction events closer to Browser behavior #3963" and originally in "Expose event properties on InteractionData (originally from #3890)"

exception thrown in pixi.js line 34546 "InteractionManager.prototype.processPointerMove = function processPointerMove(interactionEvent, displayObject, hit) { var data = interactionEvent.data; " with interactionEvent.data being undefined.

again at pixi.js 34614 "InteractionManager.prototype.processPointerOverOut = function processPointerOverOut(interactionEvent, displayObject, hit) { var data = interactionEvent.data; " for the same reason.

thanks

ivanpopelyshev commented 7 years ago

I think that was fixed just after you posted it.