1)
i want to get size of all node in c .how to do that .
2)i have 3 children in HBoxContainer .so i want to put 1st children left side ,2nd children in middle and last one in right .and i want to put separation between them according to the screen width .please tell me
i am new in godot .
extends HBoxContainer
func ready():
#var a=gettree().root.getchild(0)
#setposition(Vector2( a.getviewport().size)-getsize()-Vector2(100,0 ))
var c=self.get_children()
for i in c:
print(c.size)