diff options
author | George L. Albany <Megacake1234@gmail.com> | 2024-11-03 05:10:14 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-03 05:10:14 +0000 |
commit | 70f9c12cfbcea6dff89b2a6f4868a9e6fe3866f8 (patch) | |
tree | f202e4a27092f0fdd9d579eb46e6828ecb4673e1 /scene/main/node.cpp | |
parent | 9043ceac65972c4195dd71f15a8a1cc7aa72985f (diff) | |
parent | a684ee1dec108bb1a050f07ec3dd73fd5ef02dbc (diff) | |
download | redot-engine-70f9c12cfbcea6dff89b2a6f4868a9e6fe3866f8.tar.gz |
Merge pull request #834 from Spartan322/merge/c6c464c
Merge commit godotengine/godot@c6c464c
Diffstat (limited to 'scene/main/node.cpp')
-rw-r--r-- | scene/main/node.cpp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/scene/main/node.cpp b/scene/main/node.cpp index fcea7be3de..c4abae298a 100644 --- a/scene/main/node.cpp +++ b/scene/main/node.cpp @@ -186,6 +186,7 @@ void Node::_notification(int p_notification) { } } break; + case NOTIFICATION_SUSPENDED: case NOTIFICATION_PAUSED: { if (is_physics_interpolated_and_enabled() && is_inside_tree()) { reset_physics_interpolation(); @@ -701,6 +702,16 @@ void Node::_propagate_pause_notification(bool p_enable) { data.blocked--; } +void Node::_propagate_suspend_notification(bool p_enable) { + notification(p_enable ? NOTIFICATION_SUSPENDED : NOTIFICATION_UNSUSPENDED); + + data.blocked++; + for (KeyValue<StringName, Node *> &KV : data.children) { + KV.value->_propagate_suspend_notification(p_enable); + } + data.blocked--; +} + Node::ProcessMode Node::get_process_mode() const { return data.process_mode; } @@ -856,7 +867,7 @@ bool Node::can_process_notification(int p_what) const { bool Node::can_process() const { ERR_FAIL_COND_V(!is_inside_tree(), false); - return _can_process(get_tree()->is_paused()); + return !get_tree()->is_suspended() && _can_process(get_tree()->is_paused()); } bool Node::_can_process(bool p_paused) const { |