You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-17 14:11:06 +00:00
Notify node's moved children after sibling removed
Fixes #16213.
(cherry picked from commit 3b02cd3e71)
This commit is contained in:
committed by
Rémi Verschelde
parent
c658929cf3
commit
e689fe0451
@@ -1435,6 +1435,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;
|
||||
|
||||
Reference in New Issue
Block a user