Share Posted August 10, 2022 Is there a better way of going to the beginning of a (currently playing) timeline and remaining there than this: tl.pause(); tl.seek(0); ? Not that there needs to be, I was just wondering as I was looking through the docs Link to comment Share on other sites More sharing options...
Share Posted August 10, 2022 There are many ways tl.pause(0); // <- easiest tl.progress(0).pause(); tl.time(0).pause(); tl.totalProgress(0).pause(); tl.totalTime(0).pause(); tl.seek(0).pause(); 1 Link to comment Share on other sites More sharing options...
Author Share Posted August 10, 2022 tl.pause(0) - knew there would be one that would make me look like I hadn't read the docs properly thanks! 1 Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now