diff options
author | Marc Gilleron <marc.gilleron@gmail.com> | 2022-09-19 11:37:02 +0100 |
---|---|---|
committer | Marc Gilleron <marc.gilleron@gmail.com> | 2022-09-19 11:37:02 +0100 |
commit | 700bb066e0fbd6e24afcfde891481f728c364b48 (patch) | |
tree | 1a0cad575adf4fccf450fede280cde3d7857a029 /core/core_bind.cpp | |
parent | 908795301b9e4fcf24b115329a48d7d295c13a1a (diff) | |
download | redot-engine-700bb066e0fbd6e24afcfde891481f728c364b48.tar.gz |
Use `Vector2i` when returning atlas size in `Geometry2D::make_atlas`
Diffstat (limited to 'core/core_bind.cpp')
-rw-r--r-- | core/core_bind.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/core_bind.cpp b/core/core_bind.cpp index ba48adff6a..f6d0a05e4c 100644 --- a/core/core_bind.cpp +++ b/core/core_bind.cpp @@ -810,14 +810,13 @@ Dictionary Geometry2D::make_atlas(const Vector<Size2> &p_rects) { ::Geometry2D::make_atlas(rects, result, size); - Size2 r_size = size; Vector<Point2> r_result; for (int i = 0; i < result.size(); i++) { r_result.push_back(result[i]); } ret["points"] = r_result; - ret["size"] = r_size; + ret["size"] = size; return ret; } |