Hi,
I've got a context menu that is full of options (labels with colliders). I'd like the context menu to disappear when the mouse moves out of it for which I'm using OnHover(false).
My problem is, when the mouse moves over one of the options, the OnHover(false) event is fired on the context menu holder. My idea is to also check if the mouse is within the bounds of the context menu holder object before closing it.
I'm having trouble finding the mouse position and context menu holder bounds, to tie it all together.