I have one situation I don't know how to handle, hope some wise one can help me :)
I have one Control panel, like a pop up. I want to handle BUTTON_LEFT, but pass any other event down to the map, so you can click, but if you MOUSE_WHEEL, the map still zooms.
~~~~
This is what I've tried:
1) gui_input() in popup, only using accept_event when BUTTON_LEFT
Problem: unhandled_input in the map is not called, as the event is considered handled.
2) using input in the map instead of unhandled_input. This way works fine with the popup situation
Problem: the map is also zoomed when I use the MOUSE_WHEEL in any Control, like in a Slider (even with Mouse Filter set to Stop)
What would be the best way to get the desired behaviour? Thanks in advance