Choose your operating system:
Windows
macOS
Linux
Module |
|
Header |
/Engine/Source/Runtime/Engine/Classes/Curves/RichCurve.h |
Include |
#include "Curves/RichCurve.h" |
enum ERichCurveTangentMode
{
RCTM_Auto,
RCTM_User,
RCTM_Break,
RCTM_None,
}
Name |
Description |
---|---|
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. |
If using RCIM_Cubic, this enum describes how the tangents should be controlled in editor.