• Editor
  • Shared assets for different skins

I have a default character skin and I need some shared assets to be in a different skin. For example the character has a baseball hat for the default skin and I need that asset to remain on when toggling a new skin. I'm not finding the best way to do this. Any help would be appreciated.

Thanks!

  • Misaki がこの投稿に返信しました。
    Related Discussions
    ...

    grogcore You can achieve it by creating skin for each part and combining them. To combine skins in the Spine editor, you can use the pinning feature in the Skins view: https://esotericsoftware.com/spine-skins-view

    At runtime, you can use the addSkin() method to combine the skin to another skin, then set the combined skin to the skeleton. See the Spine Runtime Guide for basic code examples on skin setup:
    http://esotericsoftware.com/spine-runtime-skins#Grouping-attachments

    You may also find the section on the Skin API in the Spine 3.8 release blog post helpful: http://esotericsoftware.com/blog/Spine-3-8-released#Improved-skin-API

    I hope this will help you.