Fixed interrupting a mix with a new entry that has 0 mixDuration.

closes #970
This commit is contained in:
Nathan Sweet 2017-08-23 12:15:58 +02:00
parent df9f7ba040
commit c8d595565b

View File

@ -144,7 +144,8 @@ public class AnimationState {
// Require mixTime > 0 to ensure the mixing from entry was applied at least once.
if (to.mixTime > 0 && (to.mixTime >= to.mixDuration || to.timeScale == 0)) {
if (from.totalAlpha == 0) {
// Require totalAlpha == 0 to ensure mixing is complete, unless mixDuration == 0 (the transition is a single frame).
if (from.totalAlpha == 0 || to.mixDuration == 0) {
to.mixingFrom = from.mixingFrom;
to.interruptAlpha = from.interruptAlpha;
queue.end(from);