Navigation
API > API/Plugins > API/Plugins/InterchangeCommonParser
If using Cubic, this enum describes how the tangents should be controlled.
| Name | EInterchangeCurveInterpMode |
| Type | enum |
| Header File | /Engine/Plugins/Interchange/Runtime/Source/Parsers/CommonParser/Public/InterchangeCommonAnimationPayload.h |
| Include Path | #include "InterchangeCommonAnimationPayload.h" |
Syntax
enum EInterchangeCurveInterpMode
{
Linear,
Constant,
Cubic,
None,
}
Values
| Name | Remarks |
|---|---|
| Linear | Use linear interpolation between values. |
| Constant | Use a constant value. Represents stepped values. |
| Cubic | Cubic interpolation. See TangentMode for different cubic interpolation options. |
| None | No interpolation. |