Godot Delete All Child Nodes

[Solved] Godot Delete All Child Nodes | Sql - Code Explorer | yomemimo.com
Question : godot delete all child nodes

Answered by : stopnot

static func _delete_children(node):	for n in node.get_children():	node.remove_child(n)	n.queue_free()

Source : | Last Update : Tue, 13 Apr 21

Question : clear all children godot

Answered by : important-ibis-nhvmet6y2r0z

static func delete_children(node): for n in node.get_children(): node.remove_child(n)	n.queue_free()

Source : https://www.reddit.com/r/godot/comments/9qmjfj/remove_all_children/ | Last Update : Mon, 07 Dec 20

Answers related to godot delete all child nodes

Code Explorer Popular Question For Sql