Let's say i do something like:
func get_nodes_in_line(pos):
for node in node_container.get_children():
if node.get_pos() == pos:
for child in node.get_children():
child.get_pos()
What i see is the child node's position relative to it's parent node. What is the best way to get the positions of all child nodes relative to the viewport?
Thanks in advance