By the way, if we had `fun sequential(animations: ...
# tornadofx
r
By the way, if we had
fun sequential(animations: Collection<Animation>) = SequentialTransition().apply { children.setAll(animations) }
, the last line of my example could be
sequential(animations).play()
.