I have buttons that make exclusive windows pop up. The exclusive windows block outside mouse input, which is great, but they don't stop the buttons from being hovered over. Is this intentional behaviour? And if so, what steps can I take to curb it and prevent mouse hovering on these buttons while the window is being displayed?
#Exclusive window stops mouse clicks, but not mouse hovering (intentional?)
1 messages · Page 1 of 1 (latest)
I have a bit of a workaround, but it's kind of weird and I want to see if there's a simpler approach. Basically whenever the window gets brought up, all outside buttons get their mouse filter set to "ignore", and when the window dissapears, they get set back to "stop" which is what they normally use
you could add a blank control node to cover up the whole screen and eat up all the inputs whenever you add your popup
That seems to work just as well, yes. I might take that approach since that way I dont have to mess around with mouse filters at all
Ok yeah! I think I can work with this!
Even with a fully transparent colorrect it seems to do the job just fine.