if(CC_JSB)
{
this.spineManager.setAttachment(slotName, targetAttaName);
}else
{
const slot = this.spineManager.findSlot(slotName);
const skeletonData = this.spineManager.skeletonData.getRuntimeData();
const slotIndex = skeletonData.findSlotIndex(slotName);
const skin = skeletonData.findSkin(targetSkinName);
const atta = skin.getAttachment(slotIndex, targetAttaName);
slot.setAttachment(atta);
}
