From 763cc18816b8f6a14bb470d125f9dd756e9c9cf8 Mon Sep 17 00:00:00 2001 From: badlogic Date: Mon, 5 Sep 2016 15:17:45 +0200 Subject: [PATCH] [c] Call configure attachment on mesh attachments in binary loader. Thanks @boruis --- spine-c/src/spine/SkeletonBinary.c | 1 + 1 file changed, 1 insertion(+) diff --git a/spine-c/src/spine/SkeletonBinary.c b/spine-c/src/spine/SkeletonBinary.c index c8161ec8d..5a0485ac0 100644 --- a/spine-c/src/spine/SkeletonBinary.c +++ b/spine-c/src/spine/SkeletonBinary.c @@ -716,6 +716,7 @@ spAttachment* spSkeletonBinary_readAttachment(spSkeletonBinary* self, _dataInput mesh->width = 0; mesh->height = 0; } + spAttachmentLoader_configureAttachment(self->attachmentLoader, attachment); return attachment; } case SP_ATTACHMENT_LINKED_MESH: {