Get node by Pointer position

Is there a way to capture node with a given x,y (or vec2) coordinates?

Not that I am aware of.
You would manually need to loop over all the nodes and check which of theirs bounding box wraps your x,y coordinates and store them in an array.
Ofcourse there could be multiple nodes surrounding your x,y coordinates.

1 Like