Просмотр исходного кода

Fixed region sequence for libgdx.

NathanSweet 12 лет назад
Родитель
Сommit
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);