• Editor
  • Multiple skins with slots including multiple sprites

Hello again!
I dealt with a similar problem some time ago and solved it somewhat improvisationally, but this time I don't think that solution will work for me. Let me explain my current situation:

I have an animation (it's a boss in the game I'm working on) that has 3 phases. Each phase corresponds to a color (which I'm addressing with a change of skins: phase1, phase2, phase3). The issue is that each phase has parts (slots) that include changes of sprites. For example, for the "Mouth" slot, I have "OpenMouth" and "ClosedMouth". The same goes for the hands.

Is there a way to assign complete slots to skins? That way, I could select the "RightHandPhase1" or "RightHandPhase2" slot in the respective skins.

Or what would be the correct approach to this problem?

Thank you very much for your help!

Related Discussions
...

To address your situation with the boss animation that has different phases and requires changes in sprites within those phases, you can utilize the concept of skin placeholders within Spine. Each phase of your boss (phase1, phase2, phase3) can be represented by a different skin. Within each skin, you can create skin placeholders for the parts that change, such as the "Mouth" and "Hands".

For the "Mouth" slot, you can have skin placeholders like "OpenMouth" and "ClosedMouth" within each skin (phase). This allows you to switch between "OpenMouth" and "ClosedMouth" for each phase by changing the visibility of these skin placeholders in your animations. The same approach applies to the "Hands" or any other part that changes between phases.

This method does not assign complete slots to skins directly but allows you to manage different states (like "OpenMouth" and "ClosedMouth") within each phase by using skin placeholders. This approach provides flexibility and keeps your animations and skins organized.

Remember, slots are used to define the draw order and are independent of skins, but you can have multiple attachments (or skin placeholders) within a slot for different skins. This setup allows you to switch between different states or appearances of a character part within the context of a skin (or phase, in your case).

    Spinebot I confirm that Spinebot is correct, I would have given this same answer!

    Actually, Spinebot is not just right, but clear and simple. Thank you Spinebot! Thank you @Erika !