Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - pateras

Pages: [1]
1
DOTween & DOTween Pro / Re: Sequence won't start
« on: July 27, 2015, 04:00:00 PM »
Bump.

2
DOTween & DOTween Pro / Sequence won't start
« on: June 07, 2015, 07:32:44 PM »
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:

Code: [Select]
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.

Pages: [1]