New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Append to Already Playing Sequence #132
Comments
Taken from documentation:
Sadly, the only workaround I know is to create whole sequence beforehand. Other idea is to create second, paused, sequence, append to it and have OnComplete callback starting playback of the new one (if it ain't empty). |
Thanks for your reply! Wish we could just append to ongoing sequences ^^ I had seen the thing about virtual methods but it always works for me i don't know why. |
I might actually rethink about appending to ongoing Sequences, but will take me a while. Virtual methods do return a Tween object, so in theory they "can" be added to Sequences. But since they're somehow different, I don't recommend doing that. In short, I'm not taking any responsibility for virtual methods inside Sequences :D |
That would be so great actually. Yes, you are right. I've rewritten the virtual methods, they are acting kinda funny. Thou shalt not trust virtual methods!!! |
Hi. In case anyone else is googling it in 2019. This is the best workaround for this situation.
|
My animation is basicly shows the valid words user found in order.
My method does this:
showWordsSequence is a global Sequence variable. When I call this method 3 times in a for loop (in the same frame) it works. But, when sequence starts playing and after 1-2 seconds, i call this method again it does not append the animation. Is there any workaround on this?
The text was updated successfully, but these errors were encountered: