InterpolatedCamera: use internal_process
This commit is contained in:
parent
d2f929304b
commit
6b22ec5f6c
1 changed files with 4 additions and 4 deletions
|
@ -38,10 +38,10 @@ void InterpolatedCamera::_notification(int p_what) {
|
||||||
case NOTIFICATION_ENTER_TREE: {
|
case NOTIFICATION_ENTER_TREE: {
|
||||||
|
|
||||||
if (Engine::get_singleton()->is_editor_hint() && enabled)
|
if (Engine::get_singleton()->is_editor_hint() && enabled)
|
||||||
set_physics_process(false);
|
set_process_internal(false);
|
||||||
|
|
||||||
} break;
|
} break;
|
||||||
case NOTIFICATION_PROCESS: {
|
case NOTIFICATION_INTERNAL_PROCESS: {
|
||||||
|
|
||||||
if (!enabled)
|
if (!enabled)
|
||||||
break;
|
break;
|
||||||
|
@ -111,9 +111,9 @@ void InterpolatedCamera::set_interpolation_enabled(bool p_enable) {
|
||||||
if (p_enable) {
|
if (p_enable) {
|
||||||
if (is_inside_tree() && Engine::get_singleton()->is_editor_hint())
|
if (is_inside_tree() && Engine::get_singleton()->is_editor_hint())
|
||||||
return;
|
return;
|
||||||
set_process(true);
|
set_process_internal(true);
|
||||||
} else
|
} else
|
||||||
set_process(false);
|
set_process_internal(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool InterpolatedCamera::is_interpolation_enabled() const {
|
bool InterpolatedCamera::is_interpolation_enabled() const {
|
||||||
|
|
Loading…
Reference in a new issue