Click or drag to resize

TweenTransitionType Enumeration

[Missing <summary> documentation for "T:Godot.Tween.TransitionType"]

Namespace:  Godot
Assembly:  GodotSharp (in GodotSharp.dll) Version: 1.0.0
Syntax
C#
public enum TransitionType
Members
  Member nameValueDescription
Linear0

The animation is interpolated linearly.

Sine1

The animation is interpolated using a sine function.

Quint2

The animation is interpolated with a quintic (to the power of 5) function.

Quart3

The animation is interpolated with a quartic (to the power of 4) function.

Quad4

The animation is interpolated with a quadratic (to the power of 2) function.

Expo5

The animation is interpolated with an exponential (to the power of x) function.

Elastic6

The animation is interpolated with elasticity, wiggling around the edges.

Cubic7

The animation is interpolated with a cubic (to the power of 3) function.

Circ8

The animation is interpolated with a function using square roots.

Bounce9

The animation is interpolated by bouncing at the end.

Back10

The animation is interpolated backing out at ends.

See Also