[lua] Closes #754, passed wrong type to getValue in SkeletonJson

This commit is contained in:
badlogic 2016-11-09 09:31:42 +01:00
parent 53072a5a3e
commit 88228e8bd9

View File

@ -337,7 +337,7 @@ function SkeletonJson.new (attachmentLoader)
mesh.inheritDeform = getValue(map, "deform", true)
table_insert(self.linkedMeshes, {
mesh = mesh,
skin = getValue(map, skin, nil),
skin = getValue(map, "skin", nil),
slotIndex = slotIndex,
parent = parent
})