Hi,
I’m currently at work so can’t test this myself in corona.
With transitions can you stack them up like:
Take a square at x=0
transition.to( square, { time=1000, x=20 } )
transition.to( square, { time=1000, x=50 } )
transition.to( square, { time=1000, x=100 } )
What will happen here? Will the second transition wait on the first to finish, and the third wait on the second? Or all attempt to run at the same time? Or will the only the 3rd one take effect?
If I want to stack them up to run one after the other would I be better using delay?
transition.to( square, { time=1000, x=20 } )
transition.to( square, { time=1000, delay=1000, x=50 } )
transition.to( square, { time=1000, delay=2000, x=100 } )
Any negatives in stacking this way? Could it be jerky/ be out of sync?
Potentially I have 100+ of these transitions to sync up, each happening 1 second after the next.
And I am wondering of the best solution, before I attempt anything
Thanks
[import]uid: 38562 topic_id: 32925 reply_id: 332925[/import]