Check for empty ConcavePolygonShape2D before checking for intersection

This commit is contained in:
Marcel Admiraal 2021-04-06 19:43:51 +01:00
parent 55faf1c874
commit 2abfc0518f

View file

@ -691,6 +691,10 @@ bool ConcavePolygonShape2DSW::contains_point(const Vector2 &p_point) const {
}
bool ConcavePolygonShape2DSW::intersect_segment(const Vector2 &p_begin, const Vector2 &p_end, Vector2 &r_point, Vector2 &r_normal) const {
if (segments.size() == 0 || points.size() == 0) {
return false;
}
uint32_t *stack = (uint32_t *)alloca(sizeof(int) * bvh_depth);
enum {