WenJun 0 Report post Posted November 27, 2020 Does someone know how to dispatch InteractionEvent from one contianer to another container? I have two containers "Content" and "Viewport". Viewport fill the entire screen and above content, just like this: View Can I forward intercepted InteractionEvent by viewport to content with some API like dispatchEvent? Quote Share this post Link to post Share on other sites
ivan.popelyshev 1079 Report post Posted November 27, 2020 (edited) the only redirection of events that pixi has - exists in TreeSearch class in interaction. Its where event goes through stage tree, from children to parents. Everything else you have to do yourself. Sometimes you can just override TreeSearch if default algo is bad for you Edited November 27, 2020 by ivan.popelyshev Quote Share this post Link to post Share on other sites
WenJun 0 Report post Posted November 29, 2020 thx,maybe I need to read the source code in depth🤔 Quote Share this post Link to post Share on other sites