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

Leave a comment