Merge pull request #47668 from madmiraal/fix-47438
Ensure ConvexPolygonShape3D support count variable is initialised
This commit is contained in:
commit
0485a0d8b2
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue