浏览代码

Fixed region sequence for libgdx.

NathanSweet 12 年之前
父节点
当前提交
760319990f

+ 1 - 1
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);