You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently when importing more than five images while using the compact mode the images are placed in the incorrect order. Images should be arranged as
1 2 3
4 5 6
7 8
But are actually placed as
1 2 5
3 4 6
7 8
It would seem that the size of the spritesheet is not calculated beforehand but while adding each image. In the example case making the spritesheet 2x2 first until 5 images are added where it scales it to 3x3 and continues adding images in the available space.
The text was updated successfully, but these errors were encountered:
Since this could also prove to be a good way to optimize the spacing in an incremental way, I think working around it is better. Check out my fork, that fixes this: https://github.com/loxxy/stitches
Currently when importing more than five images while using the compact mode the images are placed in the incorrect order. Images should be arranged as
1 2 3
4 5 6
7 8
But are actually placed as
1 2 5
3 4 6
7 8
It would seem that the size of the spritesheet is not calculated beforehand but while adding each image. In the example case making the spritesheet 2x2 first until 5 images are added where it scales it to 3x3 and continues adding images in the available space.
The text was updated successfully, but these errors were encountered: