Is any way to verify that gui node covered by another node and not visible?

I need to check if node covered by other elements on screen.

We do not provide such a function, but you could perhaps create a function like that yourself. Use gui.get_size() and similar functions. Although with different adjust modes on nodes it does become troublesome to calculate size.

2 Likes

It would be challenging. You’d also need gui.get_index() to check which node is on top of the other. Unfortunately that only compares sibling nodes, so you need a flat hierarchy or to recursively check the parents. Also you’d need to make a list of the order of layers and compare those.

3 Likes