Fix can not set process priority of node if not any process is processing
(cherry picked from commit e36117f557
)
This commit is contained in:
parent
f220aaa54b
commit
2d82ab735c
|
@ -967,7 +967,11 @@ void Node::set_process_priority(int p_priority) {
|
||||||
|
|
||||||
if (_is_any_processing()) {
|
if (_is_any_processing()) {
|
||||||
_remove_from_process_thread_group();
|
_remove_from_process_thread_group();
|
||||||
data.process_priority = p_priority;
|
}
|
||||||
|
|
||||||
|
data.process_priority = p_priority;
|
||||||
|
|
||||||
|
if (_is_any_processing()) {
|
||||||
_add_to_process_thread_group();
|
_add_to_process_thread_group();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -989,7 +993,11 @@ void Node::set_physics_process_priority(int p_priority) {
|
||||||
|
|
||||||
if (_is_any_processing()) {
|
if (_is_any_processing()) {
|
||||||
_remove_from_process_thread_group();
|
_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();
|
_add_to_process_thread_group();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue