From 721ae8f4ad4182186c6d4dbd03956174e0ea3f24 Mon Sep 17 00:00:00 2001 From: Ricardo Buring Date: Sat, 10 Dec 2022 12:57:43 +0100 Subject: [PATCH] Fix typo bug in heightmap shape (cherry picked from commit 55eceb5150ee0c6b38f12f4be3fd601506959288) --- servers/physics/shape_sw.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servers/physics/shape_sw.cpp b/servers/physics/shape_sw.cpp index 6d7717ecc..aa8f801cd 100644 --- a/servers/physics/shape_sw.cpp +++ b/servers/physics/shape_sw.cpp @@ -1967,7 +1967,7 @@ void HeightMapShapeSW::_get_cell(const Vector3 &p_point, int &r_x, int &r_y, int Vector3 clamped_point(p_point); clamped_point.x = CLAMP(p_point.x, pos_local.x, pos_local.x + aabb.size.x); clamped_point.y = CLAMP(p_point.y, pos_local.y, pos_local.y + aabb.size.y); - clamped_point.z = CLAMP(p_point.z, pos_local.z, pos_local.x + aabb.size.z); + clamped_point.z = CLAMP(p_point.z, pos_local.z, pos_local.z + aabb.size.z); r_x = (clamped_point.x < 0.0) ? (clamped_point.x - 0.5) : (clamped_point.x + 0.5); r_y = (clamped_point.y < 0.0) ? (clamped_point.y - 0.5) : (clamped_point.y + 0.5);