Hello,
I am creating a character with many animations for a game that allows to customise the character. You would be able to change hair, eyes, clothes etc.
Unfortunately I can't figure out how to have separate texture atlas per skin, because all images will not fit into 1 texture atlas, so I would prefer to have 1 for hair sprites, other for clothes, another for accessories etc.
Is it possible to achieve something like that?
I had some ideas, but it seems to not work so far:
1) Have separate skeletons and then export separate texture atlas per skeleton, there is such option. The problem is if I create separate skeleton then I can't use them both in 1 animation.
2) Change sprites programatically, but this unfortunately is not supported by spine runtime. "setAttachment(new sprite from path)".
Any ideas appreciated.