|
| template<typename Type > |
| TEnableIf< TAttributeTypeTraits< Type >::IsBlendable, void >::Type | Blend_Internal (const FAttributeBlendData &BlendData, FStackAttributeContainer *OutAttributes) const |
| |
| template<typename Type > |
| TEnableIf<!TAttributeTypeTraits< Type >::IsBlendable, void >::Type | Blend_Internal (const FAttributeBlendData &BlendData, FStackAttributeContainer *OutAttributes) const |
| |
| template<typename Type > |
| TEnableIf< TAttributeTypeTraits< Type >::IsBlendable, void >::Type | BlendPerBone_Internal (const FAttributeBlendData &BlendData, FStackAttributeContainer *OutAttributes) const |
| |
| template<typename Type > |
| TEnableIf<!TAttributeTypeTraits< Type >::IsBlendable, void >::Type | BlendPerBone_Internal (const FAttributeBlendData &BlendData, FStackAttributeContainer *OutAttributes) const |
| |
| template<typename Type > |
| TEnableIf< TAttributeTypeTraits< Type >::IsBlendable, void >::Type | Override_Internal (const FAttributeBlendData &BlendData, FStackAttributeContainer *OutAttributes) const |
| |
| template<typename Type > |
| TEnableIf<!TAttributeTypeTraits< Type >::IsBlendable, void >::Type | Override_Internal (const FAttributeBlendData &BlendData, FStackAttributeContainer *OutAttributes) const |
| |
| template<typename Type > |
| TEnableIf< TAttributeTypeTraits< Type >::IsBlendable, void >::Type | Accumulate_Internal (const FAttributeBlendData &BlendData, FStackAttributeContainer *OutAttributes) const |
| |
| template<typename Type > |
| TEnableIf<!TAttributeTypeTraits< Type >::IsBlendable, void >::Type | Accumulate_Internal (const FAttributeBlendData &BlendData, FStackAttributeContainer *OutAttributes) const |
| |
| template<typename Type > |
| TEnableIf< TAttributeTypeTraits< Type >::IsBlendable, void >::Type | ConvertToAdditive_Internal (const FAttributeBlendData &BlendData, FStackAttributeContainer *OutAdditiveAttributes) const |
| |
| template<typename Type > |
| TEnableIf<!TAttributeTypeTraits< Type >::IsBlendable, void >::Type | ConvertToAdditive_Internal (const FAttributeBlendData &BlendData, FStackAttributeContainer *OutAdditiveAttributes) const |
| |
| template<typename Type > |
| TEnableIf< TAttributeTypeTraits< Type >::IsBlendable &&!TAttributeTypeTraits< AttributeType >::StepInterpolate, void >::Type | Interpolate_Internal (const void *FromData, const void *ToData, float Alpha, void *InOutData) const |
| |
| template<typename Type > |
| TEnableIf<!TAttributeTypeTraits< Type >::IsBlendable||TAttributeTypeTraits< AttributeType >::StepInterpolate, void >::Type | Interpolate_Internal (const void *FromData, const void *ToData, float Alpha, void *InOutData) const |
| |
template<
typename AttributeType>
class UE::Anim::TAttributeBlendOperator< AttributeType >
Default blend operator used for any registered attribute type, when no user-defined operator has been specified Using TEnableIf to select appropriate behaviour according to TAttributeTypeTraits<Type>::IsBlendable value for AttributeType template