- Modifié
Terrible atlas optimization
Image supprimée en raison de l'absence de support de HTTPS. | Afficher quand même
In our project, we need POT atlases.
The minimum export size = 16
Maximum export size = 1024
As a result, I get 2 good packaged atlas and 1 atlas 1024 with half-empty space. Why can't a packer make 3 optimized atlas 512x512 instead of 1 atlas 1024x1024 with a lot of empty space?
Currently, I have to create different atlases for different resolutions and combine them in the skeleton, but this is a stupid exercise.
The packer tries to pack in the smallest size that fits. When you use packing requirements like POT, it doesn't try sizes in between. Eg, if the images don't fit in 512x512 then it tries 1024x512, then 1024x1024. If the images are only slightly bigger that 1024x512, then there will be lots of wasted space at the 1024x1024 size. The packer does not try to pack as small as possible on the 1024x1024 size because that takes extra packing time/effort and there is no benefit
the whole texture needs to be loaded at runtime anyway.
It is much more efficient to render at runtime when all the images are on one atlas page image. That is why the packer goes up to your maximum atlas page image size (which you set to 1024x1024) before outputting multiple atlas page images. If you want three 512x512 pages, then set 512x512 as the max size. However, this can cause texture changes at runtime, which means rendering cannot be batched efficiently and will require more draw calls to render your skeletons.
Thank Nate. But in my case: backgroud images 2048x1024 manualy slice in 2 atlases 1024x1024 (I can't use them witout spine becouse background must be animating), and 3th atlas pack 1024x1024 (4 mb) instead 3 atlases 512x512 (3 mb) (i understand about drawcalls). We make a animation kid book where in page about 20 - 40 drawcalls, so we don't worry about this. But finale textures size in app very important.
Yep, makes sense. If you are willing to sacrifice draw calls to reduce texture memory, then you can tell the texture packer to use 512x512 as a max atlas page size.