diff options
author | Kevin Kuo <kevinkuo15@gmail.com> | 2024-09-25 16:17:20 -0700 |
---|---|---|
committer | Kevin Kuo <kevinkuo15@gmail.com> | 2024-09-25 17:48:29 -0700 |
commit | c453a91d7663f164975a5eb6d6f9bfa882b3d4c0 (patch) | |
tree | f800bf7fd7c6b3ffa455fbefec2189b6dec31f89 /modules | |
parent | f7c567e2f56d6e63f4749387a67e5ea4903c4696 (diff) | |
download | redot-engine-c453a91d7663f164975a5eb6d6f9bfa882b3d4c0.tar.gz |
Fix issue #68238 where raycasts don't reliably collide with HeightMapShape3D, by fixing the value bounds_grid_width and bounds_grid_depth passed
Diffstat (limited to 'modules')
-rw-r--r-- | modules/godot_physics_3d/godot_shape_3d.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/godot_physics_3d/godot_shape_3d.cpp b/modules/godot_physics_3d/godot_shape_3d.cpp index 70b6bcf19e..a5b952848f 100644 --- a/modules/godot_physics_3d/godot_shape_3d.cpp +++ b/modules/godot_physics_3d/godot_shape_3d.cpp @@ -1995,7 +1995,11 @@ bool GodotHeightMapShape3D::intersect_segment(const Vector3 &p_begin, const Vect Vector3 bounds_from = p_begin / BOUNDS_CHUNK_SIZE; Vector3 bounds_to = p_end / BOUNDS_CHUNK_SIZE; Vector3 bounds_offset = local_origin / BOUNDS_CHUNK_SIZE; - return _intersect_grid_segment(_heightmap_chunk_cull_segment, bounds_from, bounds_to, bounds_grid_width, bounds_grid_depth, bounds_offset, r_point, r_normal); + // Plus 1 here to width and depth of the chunk because _intersect_grid_segment() is used by cell level as well, + // and in _intersect_grid_segment() the loop will exit 1 early because for cell point triangle lookup, it dose x + 1, z + 1 etc for the vertex. + int bounds_width = bounds_grid_width + 1; + int bounds_depth = bounds_grid_depth + 1; + return _intersect_grid_segment(_heightmap_chunk_cull_segment, bounds_from, bounds_to, bounds_width, bounds_depth, bounds_offset, r_point, r_normal); } } |