mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-06 07:14:55 +08:00
[csharp] Match libGDX setTimelineData
This commit is contained in:
parent
4d89539b1b
commit
f796d15f31
@ -708,10 +708,13 @@ namespace Spine {
|
||||
} else {
|
||||
for (int ii = mixingToLast; ii >= 0; ii--) {
|
||||
var entry = mixingTo[ii];
|
||||
if (entry.mixDuration > 0 && !entry.HasTimeline(id)) {
|
||||
timelineDataItems[i] = AnimationState.DipMix;
|
||||
timelineDipMixItems[i] = entry;
|
||||
goto outer; // continue outer;
|
||||
if (!entry.HasTimeline(id)) {
|
||||
if (entry.mixDuration > 0) {
|
||||
timelineDataItems[i] = AnimationState.DipMix;
|
||||
timelineDipMixItems[i] = entry;
|
||||
goto outer; // continue outer;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
timelineDataItems[i] = AnimationState.Dip;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user