📌  相关文章
📜  清除所有孩子 godot - Go 编程语言 - Go 编程语言代码示例

📅  最后修改于: 2022-03-11 14:44:59.752000             🧑  作者: Mango

代码示例1
static func delete_children(node):
    for n in node.get_children():
        node.remove_child(n)
    n.queue_free()