I have a setup with two UICameras - one for all of my UI elements, and one for all of the stuff in my game world. There are clickable elements (with box colliders) both on the UI and in the world. I now want to catch all click events that aren't already caught by something else - I think I probably need to create a box collider that is "behind" everything, but I am not sure how to do this - I can't put it with my other UI elements, because then it will catch events that were intended for clickable items in my game world, since the UI Camera detects events before the other camera - but I'm not sure how to put a box collider behind my entire game world. Just make a really big invisible sprite, in every scene? Or is there a better way?
(My use case for this, in case you're curious, is that I have a UI element that toggles a blur effect. I want the user to be able to click anywhere on the screen to unblur it, with the exception of places that already do something else - those should continue to do whatever they normally do when clicked)
Thanks!