diff options
| author | Rémi Verschelde | 2018-04-11 09:28:14 +0200 |
|---|---|---|
| committer | Rémi Verschelde | 2018-04-11 09:28:14 +0200 |
| commit | fbc61374ca267545a45e00c44e13433dd2c1b1a9 (patch) | |
| tree | f91e37ddf38734b0e16139950675ccf8746d62eb /scene/3d/ray_cast.cpp | |
| parent | fa97ec23858d9c997e7c33ceecb292c5ab75c531 (diff) | |
| download | godot-fbc61374ca267545a45e00c44e13433dd2c1b1a9.tar.gz godot-fbc61374ca267545a45e00c44e13433dd2c1b1a9.tar.zst godot-fbc61374ca267545a45e00c44e13433dd2c1b1a9.zip | |
Diffstat (limited to 'scene/3d/ray_cast.cpp')
| -rw-r--r-- | scene/3d/ray_cast.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scene/3d/ray_cast.cpp b/scene/3d/ray_cast.cpp index dd5ae8a99..7f83e2c3e 100644 --- a/scene/3d/ray_cast.cpp +++ b/scene/3d/ray_cast.cpp @@ -103,7 +103,7 @@ void RayCast::set_enabled(bool p_enabled) { enabled = p_enabled; if (is_inside_tree() && !Engine::get_singleton()->is_editor_hint()) - set_physics_process(p_enabled); + set_physics_process_internal(p_enabled); if (!p_enabled) collided = false; @@ -150,12 +150,12 @@ void RayCast::_notification(int p_what) { case NOTIFICATION_ENTER_TREE: { if (enabled && !Engine::get_singleton()->is_editor_hint()) { - set_physics_process(true); + set_physics_process_internal(true); if (get_tree()->is_debugging_collisions_hint()) _update_debug_shape(); } else - set_physics_process(false); + set_physics_process_internal(false); if (Object::cast_to<CollisionObject>(get_parent())) { if (exclude_parent_body) @@ -168,14 +168,14 @@ void RayCast::_notification(int p_what) { case NOTIFICATION_EXIT_TREE: { if (enabled) { - set_physics_process(false); + set_physics_process_internal(false); } if (debug_shape) _clear_debug_shape(); } break; - case NOTIFICATION_PHYSICS_PROCESS: { + case NOTIFICATION_INTERNAL_PHYSICS_PROCESS: { if (!enabled) break; |
