diff options
author | Markus Sauermann <6299227+Sauermann@users.noreply.github.com> | 2023-06-24 03:07:22 +0200 |
---|---|---|
committer | Markus Sauermann <6299227+Sauermann@users.noreply.github.com> | 2023-08-30 00:15:55 +0200 |
commit | c4705a590b5eb01d63afb907d6dad5c49d8f6fe1 (patch) | |
tree | 90dcb549205ed9c0d83ec77c3ab7b0cd473bb762 /scene/main/scene_tree.cpp | |
parent | 247c3548d810136ffe9c1694cd76db3236efaa90 (diff) | |
download | redot-engine-c4705a590b5eb01d63afb907d6dad5c49d8f6fe1.tar.gz |
Fix Object::notification order
Previously the `p_reversed` parameter didn't influence the order
in a correct way.
Also script overridden _notification functions were not called in
the correct order.
To fix this some `notification` functions had to add a `p_reversed`
parameter.
This made it necessary to adjust cpp-bindings.
Co-authored-by: David Snopek <dsnopek@gmail.com>
Diffstat (limited to 'scene/main/scene_tree.cpp')
-rw-r--r-- | scene/main/scene_tree.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/main/scene_tree.cpp b/scene/main/scene_tree.cpp index d8c5e9c007..ba11084d3b 100644 --- a/scene/main/scene_tree.cpp +++ b/scene/main/scene_tree.cpp @@ -344,7 +344,7 @@ void SceneTree::notify_group_flags(uint32_t p_call_flags, const StringName &p_gr } if (!(p_call_flags & GROUP_CALL_DEFERRED)) { - gr_nodes[i]->notification(p_notification); + gr_nodes[i]->notification(p_notification, true); } else { MessageQueue::get_singleton()->push_notification(gr_nodes[i], p_notification); } |