diff options
author | Poommetee Ketson <poommetee@protonmail.com> | 2018-03-15 22:55:11 +0700 |
---|---|---|
committer | Poommetee Ketson <poommetee@protonmail.com> | 2018-03-16 05:15:26 +0700 |
commit | 6b22ec5f6c4768adf8bb5464dc455a7d272936d7 (patch) | |
tree | d6d60ef1a92c2b1272224aa434c980acda9954e6 | |
parent | d2f929304b0190d1642c71a3165bd7b138f70507 (diff) |
InterpolatedCamera: use internal_process
-rw-r--r-- | scene/3d/interpolated_camera.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scene/3d/interpolated_camera.cpp b/scene/3d/interpolated_camera.cpp index 9865fe156a..ffa283f634 100644 --- a/scene/3d/interpolated_camera.cpp +++ b/scene/3d/interpolated_camera.cpp @@ -38,10 +38,10 @@ void InterpolatedCamera::_notification(int p_what) { case NOTIFICATION_ENTER_TREE: { if (Engine::get_singleton()->is_editor_hint() && enabled) - set_physics_process(false); + set_process_internal(false); } break; - case NOTIFICATION_PROCESS: { + case NOTIFICATION_INTERNAL_PROCESS: { if (!enabled) break; @@ -111,9 +111,9 @@ void InterpolatedCamera::set_interpolation_enabled(bool p_enable) { if (p_enable) { if (is_inside_tree() && Engine::get_singleton()->is_editor_hint()) return; - set_process(true); + set_process_internal(true); } else - set_process(false); + set_process_internal(false); } bool InterpolatedCamera::is_interpolation_enabled() const { |