Skip to content

Tween

export type Tween<T> = StateObject<T>  & {
    kind: "Tween"
}

A specialised state object for following a goal state smoothly over time, using a TweenInfo to shape the motion.

This type isn't generally useful outside of Fusion itself.


Members

kind : "Tween"

A more specific type string which can be used for runtime type checking. This can be used to tell types of state object apart.


Learn More

Back to top