Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/TAttributeTypeTraitsBase
| |
|
| Name |
TAttributeTypeTraitsBase |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/Engine/Public/Animation/AttributeTraits.h |
| Include Path |
#include "Animation/AttributeTraits.h" |
Syntax
enum TAttributeTypeTraitsBase
{
IsBlendable = true,
WithCustomBlendOperator = false,
StepInterpolate = false,
RequiresNormalization = false,
}
Values
| Name |
Remarks |
| IsBlendable |
Determines whether or not the type should be blended, and is supported to do so. True by default |
| WithCustomBlendOperator |
Determines whether or not the type has an associated user-defined implementation of IAttributeBlendOperator. |
| StepInterpolate |
Determines whether or not the type should be step-interpolated rather than linearly. |
| RequiresNormalization |
Determines whether or not the type should be normalized after any accumulation / multiplication has been applied. |