DOTween.Kill api return number of actual tweens killed. but use this api can't kill transform's sequence tweens.
DOTween.Kill (this); or DOTween.Kill (transform); or DOTween.Rewind api all can't kill it.
DOTween.Kill api return number of actual tweens killed. but use this api can't kill transform's sequence tweens.
DOTween.Kill (this); or DOTween.Kill (transform); or DOTween.Rewind api all can't kill it.
In my case, reference to the sequence was lost, and because of that mySequence.Kill(); was not able to find and kill the sequence.
The reason it happened was, that I was calling the method that plays mySequence from 2 different parts of my code repeatedly (This did not have a noticeable visual side effect, so I did not notice until I debugged), but I was only killing the last sequence.
So the order of events was:
If this was a regular tween, one "nuclear" way to fix would be calling DOTween.KillAll(); but as I know it does not work on sequences, plus it kills every tween, which you may not want.
So there are 2 options:
Make sure you create only one mySequence, before killing. After you kill it, you can create another with the same name. This approach works but has the risk of calling same creation method several times by mistake.
Make sure you have one mySequence in your scene at the same time. This is doable with a Singleton Pattern kind of approach.
private Sequence sequence;
private Guid uid;
private void StartScalingAnimation()
{
if (sequence == null) // only create if there was none before.
{
sequence = DOTween.Sequence();
sequence.Append(transform.DOScale(new Vector2(1.1f, 1.1f), 1)).SetLoops(-1, LoopType.Yoyo);
Debug.Log("sequence id is:" + sequence.id);
//if your sequence gets an id upon creation, you can cache
//it and kill it later with that id. In my case, no id was
//given automatically at the start, so I created one.
uid = System.Guid.NewGuid();
sequence.id = uid;
Debug.Log("sequence id now:" + sequence.id);
}
sequence.Play();
}
private void StopScalingAnimation()
{
DOTween.Kill(uid);
sequence = null;
}
That's because you're trying to use the DoTween class itself. Rather, you should be using a reference to the sequence to kill it.
Code below