Hello!
I'm building my game where the Player can be a Hamster or a Beaver. There are 8 directions he can face. (Up/Down/Left/Right/Diagonals)
The player can also wear a Pirate Hat, Viking Hat, or Roman Helmet.
Thanks to the 'Skins view' I can swap what type of animal the character is, and I can swap what hat the character is wearing - which lets me test every animation, in every direction, with every combination of item! Which is awesome!
Now it's time to export Sprite Sheets and JSON files.
By default I see everything exports into one sprite sheet. But for scalability I'd like every type of animal and hat on their own sprite sheet. Eventually this game will feature dozens of animals, and thousands of items, which is why I'm needing a fairly modular solution for the export. Is there a way to export every animal and item on it's own sheet? ((Apologies if I'm missing something very obvious))