Merge pull request #49724 from Calinou/raycast3d-draw-double-sided
Use double-sided material for RayCast3D
This commit is contained in:
commit
f3c35f63e6
|
@ -419,6 +419,8 @@ void RayCast3D::_update_debug_shape_material(bool p_check_collision) {
|
|||
debug_material = material;
|
||||
|
||||
material->set_shading_mode(StandardMaterial3D::SHADING_MODE_UNSHADED);
|
||||
// Use double-sided rendering so that the RayCast can be seen if the camera is inside.
|
||||
material->set_cull_mode(BaseMaterial3D::CULL_DISABLED);
|
||||
material->set_transparency(BaseMaterial3D::TRANSPARENCY_ALPHA);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue