Powered by Blogger.

GODOT-Getting Name of First Child of a Node



Give the exact node path and find using get_child(child_count)
get_node("Ahh_button").get_child(0).name
For nth child replace child count by n

No comments