Enum Interpolation

Interpolation enumeration

The key frame’s interpolation type.

public enum Interpolation

Values

NameValueDescription
Constant0The value will remains constant to the value of the first point until the next segment.
Linear1Linear interpolation is a straight line between two points.
Bezier2A bezier or Hermite spline.
BSpline3Basis splines are defined by a series of control points, for which the curve is guaranteed only to go through the first and the last point.
CardinalSpline4A cardinal spline is a cubic Hermite spline whose tangents are defined by the endpoints and a tension parameter.
TCBSpline5Also called Kochanek-Bartels spline, the behavior of tangent is defined by tension/bias/continuity

See Also