I really need to figure out how to make an event continue down the chain even after being handled. If I have two controls which overlap AND both have gui_input() functions, the one on top will get the event input and then consume it. The gui_input() of the second control does not fire. I want to consume the event but allow it to fall through to the control underneath and call that controls gui_input.
How can I make this happen?