Enum Tween.TransitionType

enum TransitionType : int { ... }

Enum members

NameDescription
transBack The animation is interpolated backing out at ends.
transBounce The animation is interpolated by bouncing at the end.
transCirc The animation is interpolated with a function using square roots.
transCubic The animation is interpolated with a cubic (to the power of 3) function.
transElastic The animation is interpolated with elasticity, wiggling around the edges.
transExpo The animation is interpolated with an exponential (to the power of x) function.
transLinear The animation is interpolated linearly.
transQuad The animation is interpolated with a quadratic (to the power of 2) function.
transQuart The animation is interpolated with a quartic (to the power of 4) function.
transQuint The animation is interpolated with a quintic (to the power of 5) function.
transSine The animation is interpolated using a sine function.