diff options
Diffstat (limited to 'editor/editor_atlas_packer.cpp')
-rw-r--r-- | editor/editor_atlas_packer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_atlas_packer.cpp b/editor/editor_atlas_packer.cpp index 04eac0a9fd..5de4869c88 100644 --- a/editor/editor_atlas_packer.cpp +++ b/editor/editor_atlas_packer.cpp @@ -59,7 +59,7 @@ void EditorAtlasPacker::chart_pack(Vector<Chart> &charts, int &r_width, int &r_h Ref<BitMap> src_bitmap; src_bitmap.instantiate(); - src_bitmap->create(aabb.size / divide_by); + src_bitmap->create((aabb.size + Vector2(divide_by - 1, divide_by - 1)) / divide_by); int w = src_bitmap->get_size().width; int h = src_bitmap->get_size().height; |