WenJun Posted November 27, 2020 Share 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 Link to comment Share on other sites More sharing options...
ivan.popelyshev Posted November 27, 2020 Share 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 Link to comment Share on other sites More sharing options...
WenJun Posted November 29, 2020 Author Share Posted November 29, 2020 thx,maybe I need to read the source code in depth? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.