dotween icon indicating copy to clipboard operation
dotween copied to clipboard

Cannot play tween backwards

Open SharpEdgeMarshall opened this issue 10 years ago • 11 comments
trafficstars

If you create a Tween and then try to play it backwards it doesn't work

DOTween.defaultAutoKill = false;
_openLevelPanel = levelPanel.transform.DOLocalRotate(new Vector3(0, 180, 0), 1).From().Pause();
_openLevelPanel.Complete(); // This works sending the tween to the end instantly
_openLevelPanel.PlayBackwards(); // This doesn't works

DOTween v.1.0.770 Unity v 5.0.0f4

SharpEdgeMarshall avatar Jun 13 '15 18:06 SharpEdgeMarshall

Hi,

Sorry for being late, I erroneously thought I had already answered you. Your tween doesn't play backwards because, by default, it's killed as soon as it completes. Add a SetAutoKill(false) to it if you want to reuse it (like playing it backwards after completion).

Cheers, Daniele

Demigiant avatar Jun 18 '15 09:06 Demigiant

I am using the newest version of DOTween and I am running into the same issue. I do not understand why this Issue got closed as the original code example actually states that autoKill is off. DOTween.defaultAutoKill = false; I tried to use a simple fade tween and call PlayForward(), a bit later call PlayBackward(), then PlayForward() again. The issue is, if the first forward has completed, calling PlayBackward(); PlayForward(); starts the tween from the beginning. I would expect it to stay at the end, because PlayBackward() never could run to the beginning:

sequence.PlayForward();
// let it complete
sequence.PlayBackward();
sequence.PlayForward(); // Note: no delay after calling backward
// tween starts from the beginning <-- unexpected

Metallix avatar Jun 10 '19 11:06 Metallix

Ouch you're right. It's a different problem from the one @SharpEdgeMarshall had though (Fabio I didn't notice you had set AutoKill to false, but I can't replicate your issue so if you're still encountering it tell me more).

@Metallix, in your case it's because you're calling PlayForward the same frame of a PlayBackwards, immediately after, on an already completed tween. That's indeed a bug and this update (1.2.251) should fix it, can you check it out and let me know if everything's alright on your side too?

Demigiant avatar Jun 11 '19 09:06 Demigiant

Thank you so much!

hasanerzi avatar Dec 23 '22 16:12 hasanerzi

Hello! Is this still a problem? Cause I'm having one, just not sure if it's me being an idiot or DOTween having a bug. I'm using DOTween v1.2.745 on Unity 2022.3.1f1

I have this setup:

public class TransformAnomaly: IObjectAnomaly {
    private Sequence _transformSequence;

    public void Activate() {
        Transform objectTransform = <...>;

        _transformSequence = DOTween.Sequence().SetAutoKill(false);

        // One of the ifs is true in this case, I checked in the debugger
        // If ... 
        _transformSequence.Join(objectTransform.DOMove(newPosition, speed[0]));
        
        // If ...
        _transformSequence.Join(objectTransform.DORotate(newRotation, speed[1]));

        // If ...
        _transformSequence.Join(objectTransform.DOScale(newScale, speed[2]));

        // Sequence above works, I see the effect on the GameObject
    }

    public void Deactivate() {
        // At this point I can see in the debugger that Sequence is there with active = true, autoKill = false and isComplete = true
        _transformSequence.PlayBackwards(); 
      // PROBLEM HERE: the line above doesn't work. No errors, no effect. 
    }
}

Am I doing something wrong?

mrmeloman avatar Nov 09 '23 00:11 mrmeloman

Ahoy!

I don't see anything wrong in your code, but what would help is if you set DOTween's log mode to Verbose (in DOTween Utility Panel > Preferences). That way if you call a method and it fails it will tell you why. Let me know!

Demigiant avatar Nov 09 '23 09:11 Demigiant

In Unity window went to Tools > Demigiant > DOTween Utility Panel On the top of the window - Preferences tab Log Behaviour - switched to Verbose, then closed the window

Launched play mode to cause behaviour On Activate(): message in console: DOTween initialization(useSafeMode: True, recycling: OFF, logBehaviour: Verbose) On Deactivate(): nothing

Can it be recycling setting set to off? Was I supposed to turn it on at some point? (Sorry, it's literally my first time working with DOTween)

UPD: Nope, tried switching recycling option on in DOTween Utility Panel, same issue, same console message (except "recycling: ON" now)

mrmeloman avatar Nov 09 '23 22:11 mrmeloman

I'm honestly very puzzled. I'm pretty sure that PlayBackwards has no bugs (also because I use it a lot), so there must be something I don't see that's happening (and no, recycling can't be the culprit: it's actually better off because DOTween recycles already by default and doesn't really need an extra layer).

Could you add an OnKill callback and an OnUpdate to your Sequence, to see if something else is killing it and if the update call is running (see the 2 rows I added after your initial Sequence creation line)?

public class TransformAnomaly: IObjectAnomaly {
    private Sequence _transformSequence;

    public void Activate() {
        Transform objectTransform = <...>;

        _transformSequence = DOTween.Sequence().SetAutoKill(false)
            .OnKill(() => Debug.Log("Something killed me"))
            .OnUpdate(() => Debug.Log("I am updating for real"));

        // One of the ifs is true in this case, I checked in the debugger
        // If ... 
        _transformSequence.Join(objectTransform.DOMove(newPosition, speed[0]));
        
        // If ...
        _transformSequence.Join(objectTransform.DORotate(newRotation, speed[1]));

        // If ...
        _transformSequence.Join(objectTransform.DOScale(newScale, speed[2]));

        // Sequence above works, I see the effect on the GameObject
    }

    public void Deactivate() {
        // At this point I can see in the debugger that Sequence is there with active = true, autoKill = false and isComplete = true
        _transformSequence.PlayBackwards(); 
      // PROBLEM HERE: the line above doesn't work. No errors, no effect. 
    }
}

Demigiant avatar Nov 10 '23 18:11 Demigiant

Added OnKill() and OnUpdate() exactly as you suggested.

On Activate() it posts "I am updating for real" in the console once. On Deactivate() it starts spamming "I am updating for real" non-stop.

mrmeloman avatar Nov 10 '23 23:11 mrmeloman

I am super puzzled at this point, especially because if you see the tween when playing forward you should have OnUpdate spam you way more than once (and I'm sure there's no bugs with OnUpdate, it's a pretty solid system), so I need to see what else is happening. Can you repro it in a sample scene with a sample script and attach the package here?

Demigiant avatar Nov 12 '23 09:11 Demigiant

While this is totally possible, I was being lazy, so I procrastinated by thinking about this OnUpdate() spam situation. And I think I've found the issue. On all the Do<...>() methods the speed was set to 0, as I wanted an instant change this time. It worked in the case of playing the tween forward, but not backwards, as we see above. I changed the speed to 0.0000000001 and it's working forward and backwards now. At this speed, it still has just 1 update call, but PlayBack() is also working (and also has just 1 update call).

mrmeloman avatar Nov 12 '23 13:11 mrmeloman