Navigation
API > API/Runtime > API/Runtime/Engine
Enumerates tangent weight modes.
| Name | ERichCurveTangentWeightMode |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Classes/Curves/RichCurve.h |
| Include Path | #include "Curves/RichCurve.h" |
Syntax
enum ERichCurveTangentWeightMode
{
RCTWM_WeightedNone,
RCTWM_WeightedArrive,
RCTWM_WeightedLeave,
RCTWM_WeightedBoth,
}
Values
| Name | Remarks |
|---|---|
| RCTWM_WeightedNone | Don't take tangent weights into account. |
| RCTWM_WeightedArrive | Only take the arrival tangent weight into account for evaluation. |
| RCTWM_WeightedLeave | Only take the leaving tangent weight into account for evaluation. |
| RCTWM_WeightedBoth | Take both the arrival and leaving tangent weights into account for evaluation. |