I’m trying to create a sequence in which in one of its steps I have to play some Tweeners in paralell.
It’s hard to explain in words…
Imagine the following Sequence:
- Move object A.
- Move object B AND Move object C AT THE SAME TIME.
- Move object D.
My problem is that I do not know how to set step 2, since a Sequence only has methods to append, insert or prepend one Tweener after another.
I thought of solving this issue using callbacks but could not get the desired result and the code became messy.
Any help will be very helpful.