mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 22:23:07 +00:00
Geometry2D::make_atlas Fail is passed invalid rect size
(cherry picked from commit 988f4cdc90
)
This commit is contained in:
parent
65eb5fdf1e
commit
5d628535b9
@ -992,6 +992,10 @@ void Geometry::make_atlas(const Vector<Size2i> &p_rects, Vector<Point2i> &r_resu
|
||||
// 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());
|
||||
|
Loading…
Reference in New Issue
Block a user