You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just so I understand your question correctly: You're asking if you can mark a sequence of tweens as loopable for N repetitions (or infinity)? In short, no. Delta currently works by creating linked lists of Tween actions that are consumed until empty, so once a set of commands have run the sequence is effectively destroyed.
One hacky way you can approximate this is by making a tween construction function that calls itself in an oncomplete handler:
However finer lifecycle and progress control is something I'm very keen on adding. For instance being able to imagine a tween sequence as a timeline that can be scrubbed through is very desirable. With this you wouldn't even need a looping API: you could just stick an oncomplete handler at the end that reset the timeline progress.
coolio. cheers for that. I did try intertwining function with tweens, but repeats would possibly less on the code & much better.
but thats great you're looking at additions ;)
just as the title says, is there a way to do repeats, but not make multiple tweens that talk to each other
The text was updated successfully, but these errors were encountered: