Przeglądaj źródła

Geometry2D::make_atlas Fail is passed invalid rect size

kleonc 4 lat temu
rodzic
commit
988f4cdc90
1 zmienionych plików z 4 dodań i 0 usunięć
  1. 4 0
      core/math/geometry_2d.cpp

+ 4 - 0
core/math/geometry_2d.cpp

@@ -94,6 +94,10 @@ void Geometry2D::make_atlas(const Vector<Size2i> &p_rects, Vector<Point2i> &r_re
 	// 256x8192 atlas (won't work anywhere).
 
 	ERR_FAIL_COND(p_rects.size() == 0);
+	for (int i = 0; i < p_rects.size(); i++) {
+		ERR_FAIL_COND(p_rects[i].width <= 0);
+		ERR_FAIL_COND(p_rects[i].height <= 0);
+	}
 
 	Vector<_AtlasWorkRect> wrects;
 	wrects.resize(p_rects.size());