fix: tween manager not returning the cancelled tweens back into the pool

This commit is contained in:
Syntriax 2025-05-31 12:10:57 +03:00
parent 6adc002f1a
commit 56321864fb

View File

@ -70,6 +70,7 @@ public class TweenManager : UniverseObject, ITweenManager
tween.State = TweenState.Cancelled;
coroutineManager.StopCoroutine(runningCoroutine);
runningCoroutines.Remove(tween);
Return((Tween)tween);
}
protected override void OnEnteringUniverse(IUniverse universe)