Also, `then` and `and` also take `vararg`s, so ins...
# tornadofx
r
Also,
then
and
and
also take `vararg`s, so instead of
t1.then(t2).then(t3).then(t4).play()
you could do
t1.then(t2, t3, t4).play()
, which has a very slight advantage that it only creates one
SequentialTransition
instead of 3 nested.
👍 1