mirror of
https://github.com/godotengine/godot.git
synced 2024-12-14 23:27:24 +00:00
Merge pull request #23564 from endragor/fix-remove-child-ordering
Notify node's moved children after sibling removed
This commit is contained in:
commit
c5656b7468
@ -1208,6 +1208,7 @@ void Node::remove_child(Node *p_child) {
|
||||
for (int i = idx; i < data.children.size(); i++) {
|
||||
|
||||
data.children[i]->data.pos = i;
|
||||
data.children[i]->notification(NOTIFICATION_MOVED_IN_PARENT);
|
||||
}
|
||||
|
||||
p_child->data.parent = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user