• Editor
  • Exception: Attachment not found Errors

Avatar_V01_skeleton.json.txtI'm getting this error using Unity and 2D toolkit even though the Attachment does exist:

Exception: Attachment not found: V_M_Face_Style_002_001, for slot: V_M_Face_Slot
Spine.Skeleton.SetAttachment (System.String slotName, System.String attachmentName) (at Assets/Spine/spine-csharp/src/Skeleton.cs:200)

Any Ideas cause I am stumped???

Here is the code in my script:

SkeletonAnimation skeletonAnimation = GetComponent<SkeletonAnimation>();

skeletonAnimation.skeleton.SetAttachment("V_M_Face_Slot",GLOBALZ.V_M_Faces[(GLOBALZ.CurrentVikingMaleFace-1)].ToString());
Related Discussions
...

The name of the attachment is "VIKING/MALE/FACES/V_M_Face_Style_002_001", not "V_M_Face_Style_002_001".

Why is this? It should be pulling the image from the Atlas in 2D tookit, So I'm curious why it still needs the "VIKING/MALE/FACES/" part??

And thanks for getting back to me so quick. 🙂

That is the full name in the data. I believe spine-tk2d strips the path to look up the region in the atlas because TK2D doesn't keep the full path.