1
0
mirror of https://github.com/Cardidi/dotween-upm-fork.git synced 2025-12-20 17:26:03 +08:00

[BUGFIX] Correction to previous fix

This commit is contained in:
Demigiant 2019-02-24 01:13:28 +01:00
parent 1b06f0d7c1
commit f20425c56d
14 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ namespace DG.Tweening
public class DOTween
{
/// <summary>DOTween's version</summary>
public static readonly string Version = "1.2.185"; // Last version before modules: 1.1.755
public static readonly string Version = "1.2.186"; // Last version before modules: 1.1.755
///////////////////////////////////////////////
// Options ////////////////////////////////////

View File

@ -273,7 +273,7 @@ namespace DG.Tweening
// ...otherwise remove failed tween from Sequence and continue
TweenManager.Despawn(t, false);
s._sequencedObjs.RemoveAt(i);
s.sequencedTweens.RemoveAt(i);
s.sequencedTweens.Remove(t);
--i; --len;
continue;
}
@ -331,7 +331,7 @@ namespace DG.Tweening
// ...otherwise remove failed tween from Sequence and continue
TweenManager.Despawn(t, false);
s._sequencedObjs.RemoveAt(i);
s.sequencedTweens.RemoveAt(i);
s.sequencedTweens.Remove(t);
--i; --len;
continue;
}

Binary file not shown.