1
0
mirror of https://github.com/Cardidi/dotween-upm-fork.git synced 2026-02-04 14:24:55 +08:00

Fixed DOTween.TweensBytId not working correctly in some cases

This commit is contained in:
Daniele Giardini 2015-04-21 18:28:17 +02:00
parent 998815b970
commit 04e3b085fa
42 changed files with 2 additions and 2 deletions

View File

@ -687,7 +687,7 @@ namespace DG.Tweening.Core
List<Tween> ts = new List<Tween>(len);
for (int i = 0; i < len; ++i) {
Tween t = _activeTweens[i];
if (t.id == id) ts.Add(t);
if (t.id.Equals(id)) ts.Add(t);
}
if (ts.Count > 0) return ts;
return null;

View File

@ -32,7 +32,7 @@ namespace DG.Tweening
public class DOTween
{
/// <summary>DOTween's version</summary>
public static readonly string Version = "1.0.600";
public static readonly string Version = "1.0.605";
///////////////////////////////////////////////
// Options ////////////////////////////////////

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.