Fixed setup pose slot blend mode.

This commit is contained in:
NathanSweet 2015-09-23 11:02:12 -07:00
parent 7259586ba1
commit aa4a8d08e6

View File

@ -1774,7 +1774,7 @@ spine.SkeletonJson.prototype = {
}
slotData.attachmentName = slotMap["attachment"];
slotData.blendMode = spine.AttachmentType[slotMap["blend"] || "normal"];
slotData.blendMode = spine.BlendMode[slotMap["blend"] || "normal"];
skeletonData.slots.push(slotData);
}