First of all, thank you for this amazing tool, and HOTween before it. You've done a fantastic job, and I really appreciate all of the effort that you've put in.
I'm trying to create a sequence using the following structure:
Sequence sequence = DOTween.Sequenec();
foreach (...)
{
Tween tween = DOTween.To(...);
sequence.Append(tween);
}
The sequence does not start, however. If I delete the call to Append, the tweeners fire, but with it there, nothing happens. I've also tried calling Play() on both the sequence and the tweeners, but that doesn't do anything, either.
How can I get my sequence to start?
Thank you.