Merge pull request #90800 from ydeltastar/fix-raycast3d-debug-draw
Fix `RayCast3D`'s debug draw transform not updating
This commit is contained in:
commit
61c967b3ab
1 changed files with 4 additions and 2 deletions
|
@ -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()) {
|
||||
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());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue