Choose your operating system:
Windows
macOS
Linux
Module |
|
Header |
/Engine/Source/Runtime/Engine/Classes/Curves/RealCurve.h |
Include |
#include "Curves/RealCurve.h" |
enum ERichCurveInterpMode
{
RCIM_Linear,
RCIM_Constant,
RCIM_Cubic,
RCIM_None,
}
Name |
Description |
---|---|
RCIM_Linear |
Use linear interpolation between values. |
RCIM_Constant |
Use a constant value. Represents stepped values. |
RCIM_Cubic |
Cubic interpolation. See TangentMode for different cubic interpolation options. |
RCIM_None |
No interpolation. |
Method of interpolation between this key and the next.