mirror of
https://github.com/Cardidi/dotween-upm-fork.git
synced 2025-12-20 01:06:02 +08:00
[BUGFIX] Set default tween intId to -999 (otherwise using an intId of 0 was the same as filtering all)
This commit is contained in:
parent
dbeab7c974
commit
19a20d6b1c
@ -2489,7 +2489,8 @@
|
||||
<summary>String ID (usable for filtering with DOTween static methods). 2X faster than using an object id</summary>
|
||||
</member>
|
||||
<member name="F:DG.Tweening.Tween.intId">
|
||||
<summary>String ID (usable for filtering with DOTween static methods). 4X faster than using an object id, 2X faster than using a string id</summary>
|
||||
<summary>Int ID (usable for filtering with DOTween static methods). 4X faster than using an object id, 2X faster than using a string id.
|
||||
Default is -999 so avoid using an ID like that or it will capture all unset intIds</summary>
|
||||
</member>
|
||||
<member name="F:DG.Tweening.Tween.target">
|
||||
<summary>Tween target (usable for filtering with DOTween static methods). Automatically set by tween creation shorcuts</summary>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -2489,7 +2489,8 @@
|
||||
<summary>String ID (usable for filtering with DOTween static methods). 2X faster than using an object id</summary>
|
||||
</member>
|
||||
<member name="F:DG.Tweening.Tween.intId">
|
||||
<summary>String ID (usable for filtering with DOTween static methods). 4X faster than using an object id, 2X faster than using a string id</summary>
|
||||
<summary>Int ID (usable for filtering with DOTween static methods). 4X faster than using an object id, 2X faster than using a string id.
|
||||
Default is -999 so avoid using an ID like that or it will capture all unset intIds</summary>
|
||||
</member>
|
||||
<member name="F:DG.Tweening.Tween.target">
|
||||
<summary>Tween target (usable for filtering with DOTween static methods). Automatically set by tween creation shorcuts</summary>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -2489,7 +2489,8 @@
|
||||
<summary>String ID (usable for filtering with DOTween static methods). 2X faster than using an object id</summary>
|
||||
</member>
|
||||
<member name="F:DG.Tweening.Tween.intId">
|
||||
<summary>String ID (usable for filtering with DOTween static methods). 4X faster than using an object id, 2X faster than using a string id</summary>
|
||||
<summary>Int ID (usable for filtering with DOTween static methods). 4X faster than using an object id, 2X faster than using a string id.
|
||||
Default is -999 so avoid using an ID like that or it will capture all unset intIds</summary>
|
||||
</member>
|
||||
<member name="F:DG.Tweening.Tween.target">
|
||||
<summary>Tween target (usable for filtering with DOTween static methods). Automatically set by tween creation shorcuts</summary>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -32,7 +32,7 @@ namespace DG.Tweening
|
||||
public class DOTween
|
||||
{
|
||||
/// <summary>DOTween's version</summary>
|
||||
public static readonly string Version = "1.1.685";
|
||||
public static readonly string Version = "1.1.690";
|
||||
|
||||
///////////////////////////////////////////////
|
||||
// Options ////////////////////////////////////
|
||||
|
||||
@ -28,8 +28,9 @@ namespace DG.Tweening
|
||||
public object id;
|
||||
/// <summary>String ID (usable for filtering with DOTween static methods). 2X faster than using an object id</summary>
|
||||
public string stringId;
|
||||
/// <summary>String ID (usable for filtering with DOTween static methods). 4X faster than using an object id, 2X faster than using a string id</summary>
|
||||
public int intId;
|
||||
/// <summary>Int ID (usable for filtering with DOTween static methods). 4X faster than using an object id, 2X faster than using a string id.
|
||||
/// Default is -999 so avoid using an ID like that or it will capture all unset intIds</summary>
|
||||
public int intId = -999;
|
||||
/// <summary>Tween target (usable for filtering with DOTween static methods). Automatically set by tween creation shorcuts</summary>
|
||||
public object target; // Automatically set by DO shortcuts using SetTarget extension. Also used during Tweener.DoStartup in some special cases
|
||||
// Update type and eventual independence (changed via TweenManager.SetUpdateType)
|
||||
|
||||
@ -2489,7 +2489,8 @@
|
||||
<summary>String ID (usable for filtering with DOTween static methods). 2X faster than using an object id</summary>
|
||||
</member>
|
||||
<member name="F:DG.Tweening.Tween.intId">
|
||||
<summary>String ID (usable for filtering with DOTween static methods). 4X faster than using an object id, 2X faster than using a string id</summary>
|
||||
<summary>Int ID (usable for filtering with DOTween static methods). 4X faster than using an object id, 2X faster than using a string id.
|
||||
Default is -999 so avoid using an ID like that or it will capture all unset intIds</summary>
|
||||
</member>
|
||||
<member name="F:DG.Tweening.Tween.target">
|
||||
<summary>Tween target (usable for filtering with DOTween static methods). Automatically set by tween creation shorcuts</summary>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user