mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 22:34:53 +08:00
[c] Json parser was missing parsing of points in skins. See #1168
This commit is contained in:
parent
5a73833416
commit
3a1aedc035
@ -891,6 +891,8 @@ spSkeletonData* spSkeletonJson_readSkeletonData (spSkeletonJson* self, const cha
|
||||
type = SP_ATTACHMENT_PATH;
|
||||
else if (strcmp(typeString, "clipping") == 0)
|
||||
type = SP_ATTACHMENT_CLIPPING;
|
||||
else if (strcmp(typeString, "point") == 0)
|
||||
type = SP_ATTACHMENT_POINT;
|
||||
else {
|
||||
spSkeletonData_dispose(skeletonData);
|
||||
_spSkeletonJson_setError(self, root, "Unknown attachment type: ", typeString);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user