ERichCurveTangentMode

If using RCIM_Cubic, this enum describes how the tangents should be controlled in editor.

Choose your operating system:

Windows

macOS

Linux

References

Module

Engine

Header

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

Include

#include "Curves/RichCurve.h"

Syntax

enum ERichCurveTangentMode
{
    RCTM_Auto,
    RCTM_User,
    RCTM_Break,
    RCTM_None,
}

Values

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.

Remarks

If using RCIM_Cubic, this enum describes how the tangents should be controlled in editor.