Hi Harald,
That makes perfect sense, but the create skin is still not showing. I emailed you the small repro project to the email you've given me.
For reference and benefit of others, here's the code I've tried:
public class Root : MonoBehaviour
{
public SkeletonDataAsset Body;
SkeletonAnimation _bodySkeletonAnimation;
public SkeletonDataAsset Outfit;
void Start()
{
_bodySkeletonAnimation = SkeletonAnimation.NewSkeletonAnimationGameObject(Body);
var bodySkeletonData = Body.GetSkeletonData(true);
var outfitSkeletonData = Outfit.GetSkeletonData(true);
var outfitSkin = outfitSkeletonData.DefaultSkin;
var customSkin = new Skin("custom-skin");
foreach (var attachement in outfitSkin.Attachments)
{
var slotIndex = attachement.SlotIndex;
var slotName = outfitSkeletonData.Slots.Items[slotIndex].Name;
int bodySlotIndex = bodySkeletonData.FindSlotIndex(slotName);
if (bodySlotIndex >= 0)
{
Debug.Log("attaching " + attachement.Name + " to slot index " + bodySlotIndex + ", slotName: " + slotName + ", outfit slot index: " + slotIndex);
customSkin.SetAttachment(bodySlotIndex, slotName, attachement.Attachment);
}
}
_bodySkeletonAnimation.Skeleton.SetSkin(customSkin);
_bodySkeletonAnimation.Skeleton.SetSlotsToSetupPose();
_bodySkeletonAnimation.AnimationState.Apply(_bodySkeletonAnimation.Skeleton);
}
}