Navigation
API > API/Runtime > API/Runtime/Engine
| Name | ECurveBlendOption::Type |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Public/Animation/AnimTypes.h |
| Include Path | #include "Animation/AnimTypes.h" |
Syntax
namespace ECurveBlendOption
{
enum Type
{
Override,
DoNotOverride,
NormalizeByWeight,
BlendByWeight,
UseBasePose,
UseMaxValue,
UseMinValue,
}
}
Values
| Name | Remarks |
|---|---|
| Override | Last pose that contains valid curve value override it. |
| DoNotOverride | Only set the value if the previous pose doesn't have the curve value. |
| NormalizeByWeight | Normalize By Sum of Weight and use it to blend. |
| BlendByWeight | Blend By Weight without normalizing |
| UseBasePose | Use Base Pose for all curve values. Do not blend |
| UseMaxValue | Find the highest curve value from multiple poses and use that. |
| UseMinValue | Find the lowest curve value from multiple poses and use that. |