Fix can not set process priority of node if not any process is processing

(cherry picked from commit e36117f557)
This commit is contained in:
jsjtxietian 2023-09-26 17:57:45 +08:00 committed by Yuri Sizov
parent f220aaa54b
commit 2d82ab735c
1 changed files with 10 additions and 2 deletions

View File

@ -967,7 +967,11 @@ void Node::set_process_priority(int p_priority) {
if (_is_any_processing()) {
_remove_from_process_thread_group();
data.process_priority = p_priority;
}
data.process_priority = p_priority;
if (_is_any_processing()) {
_add_to_process_thread_group();
}
}
@ -989,7 +993,11 @@ void Node::set_physics_process_priority(int p_priority) {
if (_is_any_processing()) {
_remove_from_process_thread_group();
data.physics_process_priority = p_priority;
}
data.physics_process_priority = p_priority;
if (_is_any_processing()) {
_add_to_process_thread_group();
}
}