فهرست منبع

[libgdx] Fixed ShearYTimeline typo.

Nathan Sweet 1 سال پیش
والد
کامیت
1a83e967b3
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/Animation.java

+ 1 - 1
spine-libgdx/spine-libgdx/src/com/esotericsoftware/spine/Animation.java

@@ -941,7 +941,7 @@ public class Animation {
 			MixDirection direction) {
 
 			Bone bone = skeleton.bones.get(boneIndex);
-			if (bone.active) bone.shearY = getRelativeValue(time, alpha, blend, bone.shearX, bone.data.shearY);
+			if (bone.active) bone.shearY = getRelativeValue(time, alpha, blend, bone.shearY, bone.data.shearY);
 		}
 	}