[libgdx] Fixed pooled track entries not resetting mixBlend.

closes #1746
This commit is contained in:
Nathan Sweet 2021-06-14 22:18:35 -04:00
parent dbec33e556
commit 8e21d09c79

View File

@ -726,6 +726,7 @@ public class AnimationState {
entry.interruptAlpha = 1;
entry.mixTime = 0;
entry.mixDuration = last == null ? 0 : data.getMix(last.animation, animation);
entry.mixBlend = MixBlend.replace;
return entry;
}