summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Admiraal <madmiraal@users.noreply.github.com>2021-04-06 16:45:05 +0100
committerMarcel Admiraal <madmiraal@users.noreply.github.com>2021-04-06 16:46:15 +0100
commit6544f8422f876bbe91048e6690571d9043ea6aec (patch)
treef565bf4eed981b61c60ead94b2e527dad7f08c46
parent55faf1c874fae5b67928395d3a35889bbb4e458b (diff)
Ensure ConvexPolygonShape3D support count variable is initialised
-rw-r--r--servers/physics_3d/shape_3d_sw.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/servers/physics_3d/shape_3d_sw.cpp b/servers/physics_3d/shape_3d_sw.cpp
index bf0946a0e2..4c14cb3162 100644
--- a/servers/physics_3d/shape_3d_sw.cpp
+++ b/servers/physics_3d/shape_3d_sw.cpp
@@ -891,6 +891,9 @@ void ConvexPolygonShape3DSW::get_supports(const Vector3 &p_normal, int p_max, Ve
const Vector3 *vertices = mesh.vertices.ptr();
int vc = mesh.vertices.size();
+ r_amount = 0;
+ ERR_FAIL_COND_MSG(vc == 0, "Convex polygon shape has no vertices.");
+
//find vertex first
real_t max = 0;
int vtx = 0;