enum TangentModeBits

Flags that are used for describing how are tangents calculated for a specific keyframe in an animation curve.

Modes for "in" and "out" tangents can be combined.

Values

NameValueDescription
Auto 0 Both tangents are calculated automatically based on the two surrounding keyframes.
InAuto 5 Left tangent is calculated automatically based on the two surrounding keyframes.
InFree 9 Left tangent is manually adjusted by the user.
InLinear 17 Tangent is calculated automatically based on the previous keyframe.
InStep 33 Tangent is infinite, ensuring there is a instantaneus jump between previous and current keyframe value.
OutAuto 66 Right tangents are calculated automatically based on the two surrounding keyframes.
OutFree 130 Right tangent is manually adjusted by the user.
OutLinear 258 Tangent is calculated automatically based on the next keyframe.
OutStep 514 Tangent is infinite, ensuring there is a instantaneus jump between current and next keyframe value.
Free 1024 Both tangents are manually adjusted by the user.