<@U25U0KPFT> Yeah, we have `then` to chain any `An...
# tornadofx
r
@carlw Yeah, we have
then
to chain any `Animation`s into `SequentialTransition`s, and
and
to chain `Animation`s into `ParallelTransition`s. There are also convenience functions for animating position (
move
), rotation (
rotate
), scale (
scale
), and opacity (
fade
), as well as a
transform
helper that lets you do all of them at once. All those helpers work for `Node`s and `UIComponent`s.
👍 1