Animation Tree is used when you want to run a group of animations.

interface AnimationTree {
    animation: Animation<Widget>;
    duration: number;
    mode: "positive" | "reverse";
    next: AnimationTree | AnimationTree[];
}

Properties

animation: Animation<Widget>

The animation that this node need

duration: number
mode: "positive" | "reverse"

The next animation node of this AnimationTree