summaryrefslogtreecommitdiffstats
path: root/scene/3d/physics
diff options
context:
space:
mode:
authoryds <ydeltastar@gmail.com>2024-04-17 11:21:53 -0300
committeryds <ydeltastar@gmail.com>2024-04-17 11:21:53 -0300
commit4077129f9db9d220b444ec05cefd359009cfa0d9 (patch)
tree2c7662d6566d94d0805a44a6d5563461e2746ad8 /scene/3d/physics
parent4b7776e31bf91bd3d710277b505c196b38d8fff3 (diff)
downloadredot-engine-4077129f9db9d220b444ec05cefd359009cfa0d9.tar.gz
Fix RayCast3D's debug draw transform not updating
Diffstat (limited to 'scene/3d/physics')
-rw-r--r--scene/3d/physics/ray_cast_3d.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/scene/3d/physics/ray_cast_3d.cpp b/scene/3d/physics/ray_cast_3d.cpp
index 0cb722a77e..a9272388c1 100644
--- a/scene/3d/physics/ray_cast_3d.cpp
+++ b/scene/3d/physics/ray_cast_3d.cpp
@@ -204,8 +204,10 @@ void RayCast3D::_notification(int p_what) {
bool prev_collision_state = collided;
_update_raycast_state();
- if (prev_collision_state != collided && get_tree()->is_debugging_collisions_hint()) {
- _update_debug_shape_material(true);
+ if (get_tree()->is_debugging_collisions_hint()) {
+ if (prev_collision_state != collided) {
+ _update_debug_shape_material(true);
+ }
if (is_inside_tree() && debug_instance.is_valid()) {
RenderingServer::get_singleton()->instance_set_transform(debug_instance, get_global_transform());
}