Merge pull request #11447 from akien-mga/queue_delete

Let queue_free() work on nodes which are not in the scene tree
This commit is contained in:
Rémi Verschelde 2017-09-21 10:42:02 +02:00 committed by GitHub
commit 2d05e102b7

View file

@ -2572,8 +2572,11 @@ void Node::print_stray_nodes() {
void Node::queue_delete() {
ERR_FAIL_COND(!is_inside_tree());
get_tree()->queue_delete(this);
if (is_inside_tree()) {
get_tree()->queue_delete(this);
} else {
SceneTree::get_singleton()->queue_delete(this);
}
}
Array Node::_get_children() const {