Hello,
We have a situation where we have a bunch of characters that all share the same animations. But of these, say 12 characters each has their own set of attachments they can use.
We are starting to reach the limits of a 2048x2048 atlas and are looking into splitting up these characters into different atlases.
Ideally we could share the one skeleton.json file (we are using Unity). For each character type we would create a SkeletonData using this skeleton.json, but just change out the atlas file to only include attachments that would be valid for that character type.
We can't do this as we get missing attachment error as every atlas will be missing a bunch of the attachments for other unit types.
Is there a better way to approach this issue? I assume its a common thing people run into with lots of attachments?
Currently, our best idea is to write a script that builds new Skeleton.json files that only contain the attachments that each character uses but this will still result in a lot of duplicated animation data through the project.
Thank you