TweenTransitionType Enumeration |
[Missing <summary> documentation for "T:Godot.Tween.TransitionType"]
Namespace: Godot
public enum TransitionType
Member name | Value | Description | |
---|---|---|---|
Linear | 0 | The animation is interpolated linearly. | |
Sine | 1 | The animation is interpolated using a sine function. | |
Quint | 2 | The animation is interpolated with a quintic (to the power of 5) function. | |
Quart | 3 | The animation is interpolated with a quartic (to the power of 4) function. | |
Quad | 4 | The animation is interpolated with a quadratic (to the power of 2) function. | |
Expo | 5 | The animation is interpolated with an exponential (to the power of x) function. | |
Elastic | 6 | The animation is interpolated with elasticity, wiggling around the edges. | |
Cubic | 7 | The animation is interpolated with a cubic (to the power of 3) function. | |
Circ | 8 | The animation is interpolated with a function using square roots. | |
Bounce | 9 | The animation is interpolated by bouncing at the end. | |
Back | 10 | The animation is interpolated backing out at ends. |