diff --git a/spine-libgdx/src/com/esotericsoftware/spine/attachments/TextureAtlasAttachmentLoader.java b/spine-libgdx/src/com/esotericsoftware/spine/attachments/TextureAtlasAttachmentLoader.java index 76dfa7315..0a3c600e1 100644 --- a/spine-libgdx/src/com/esotericsoftware/spine/attachments/TextureAtlasAttachmentLoader.java +++ b/spine-libgdx/src/com/esotericsoftware/spine/attachments/TextureAtlasAttachmentLoader.java @@ -47,7 +47,7 @@ public class TextureAtlasAttachmentLoader implements AttachmentLoader { attachment = new RegionAttachment(name); break; case regionSequence: - attachment = new RegionAttachment(name); + attachment = new RegionSequenceAttachment(name); break; default: throw new IllegalArgumentException("Unknown attachment type: " + type);