mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-16 03:51:37 +08:00
[csharp] Limit linked list by speeding up, see 0f944b2baf
This commit is contained in:
parent
f5c8a36391
commit
5d78359b7c
@ -140,9 +140,13 @@ namespace Spine {
|
||||
|
||||
// Require mixTime > 0 to ensure the mixing from entry was applied at least once.
|
||||
if (entry.mixTime > 0 && (entry.mixTime >= entry.mixDuration || entry.timeScale == 0)) {
|
||||
if (animationCount > 6 && from.mixingFrom == null) { // Limit the mixing from linked list.
|
||||
entry.mixingFrom = null;
|
||||
queue.End(from);
|
||||
if (animationCount > 5 && from.mixingFrom == null) {
|
||||
// Limit linked list by speeding up and removing old entries.
|
||||
entry.interruptAlpha = Math.Max(0, entry.interruptAlpha - delta * 0.66f);
|
||||
if (entry.interruptAlpha <= 0) {
|
||||
entry.mixingFrom = null;
|
||||
queue.End(from);
|
||||
}
|
||||
}
|
||||
return finished;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user