Removed old attachment types.

This commit is contained in:
NathanSweet 2016-06-24 14:50:22 +02:00
parent ebab0c6ca7
commit a9a771ba1c

View File

@ -298,11 +298,6 @@ public class SkeletonJson {
String type = map.getString("type", AttachmentType.region.name());
// BOZO - Warning: These types are deprecated and will be removed in the near future.
if (type.equals("skinnedmesh")) type = "weightedmesh";
if (type.equals("weightedmesh")) type = "mesh";
if (type.equals("weightedlinkedmesh")) type = "linkedmesh";
switch (AttachmentType.valueOf(type)) {
case region: {
String path = map.getString("path", name);