Jump to content
GreenSock

-=ML=-

instantly complete the tween

Warning: Please note

This thread was started before GSAP 3 was released. Some information, especially the syntax, may be out of date for GSAP 3. Please see the GSAP 3 migration guide and release notes for more information about how to update the code to GSAP 3's syntax. 

Recommended Posts

Hi,

 

Is there a way to complete the tween in one call?

Basically, I want to be able to skip some animations. I need a method that would bring all values to their end state and execute the onComplete callback. I guess .seek(duration) might work, but something that doesn't require additional parameters would be better.

Link to comment
Share on other sites

Hmm, TweenMax has .progress() and .totalProgress(), which use a value from 0 to 1 to move the tweens playhead, so

mytween.totalProgress(1);

would bring mytween to the very end, including any repeats and delays.

Link to comment
Share on other sites

Yep, Jamie's suggestion works for TweenMax, TimelineLite, and TimelineMax. For something that works with ANY tween/timeline (including TweenLite instances), you could do:

myTween.totalTime( myTween.totalDuration() );
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×