Fix errors and crash with empty ConvexPolygonShape2D

This commit is contained in:
PouleyKetchoupp 2021-03-04 09:46:32 -07:00
parent f01e95eb55
commit 6fb6090748
1 changed files with 4 additions and 0 deletions

View File

@ -72,6 +72,10 @@ void ConvexPolygonShape2D::_bind_methods() {
}
void ConvexPolygonShape2D::draw(const RID &p_to_rid, const Color &p_color) {
if (points.size() < 3) {
return;
}
Vector<Color> col;
col.push_back(p_color);
RenderingServer::get_singleton()->canvas_item_add_polygon(p_to_rid, points, col);