Navigation
API > API/Runtime > API/Runtime/Engine
If using RCIM_Cubic, this enum describes how the tangents should be controlled in editor.
| Name | ERichCurveTangentMode |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Classes/Curves/RichCurve.h |
| Include Path | #include "Curves/RichCurve.h" |
Syntax
enum ERichCurveTangentMode
{
RCTM_Auto,
RCTM_User,
RCTM_Break,
RCTM_None,
RCTM_SmartAuto,
}
Values
| Name | Remarks |
|---|---|
| RCTM_Auto | Automatically calculates tangents to create smooth curves between values. |
| RCTM_User | User specifies the tangent as a unified tangent where the two tangents are locked to each other, presenting a consistent curve before and after. |
| RCTM_Break | User specifies the tangent as two separate broken tangents on each side of the key which can allow a sharp change in evaluation before or after. |
| RCTM_None | No tangents. |
| RCTM_SmartAuto | New Auto tangent that creates smoother curves than Auto. |