ERichCurveInterpMode

Method of interpolation between this key and the next.

Choose your operating system:

Windows

macOS

Linux

References

Module

Engine

Header

/Engine/Source/Runtime/Engine/Classes/Curves/RealCurve.h

Include

#include "Curves/RealCurve.h"

Syntax

enum ERichCurveInterpMode
{
    RCIM_Linear,
    RCIM_Constant,
    RCIM_Cubic,
    RCIM_None,
}

Values

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.

Remarks

Method of interpolation between this key and the next.