Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/TBaseBlendedCurve
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
float Get
(
SmartName::UID_Type InUid |
Animation/AnimCurveTypes.h | ||
| Get value of curve element named InName. | Animation/AnimCurveTypes.h | ||
float Get
(
SmartName::UID_Type InUid, |
Animation/AnimCurveTypes.h | ||
| Get Value of curve named InName with validation and default value Note that this performs a binary search per-call. | Animation/AnimCurveTypes.h |
Get(SmartName::UID_Type)
| Name | Get |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Public/Animation/AnimCurveTypes.h |
| Include Path | #include "Animation/AnimCurveTypes.h" |
float Get
(
SmartName::UID_Type InUid
) const
Get(FName)
Description
Get value of curve element named InName. Note that this performs a binary search per-call. Consider using a ForEach* or a bulk API call (e.g. UE::Anim::FCurveUtils::BulkGet) to get multiple element's values.
| Name | Get |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Public/Animation/AnimCurveTypes.h |
| Include Path | #include "Animation/AnimCurveTypes.h" |
float Get
(
FName InName
) const
the value of the curve element. If this curve does not contain an element with the supplied name, returns 0.0
Parameters
| Name | Remarks |
|---|---|
| InName | the name of the curve element to get |
Get(SmartName::UID_Type, bool &, float)
| Name | Get |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Public/Animation/AnimCurveTypes.h |
| Include Path | #include "Animation/AnimCurveTypes.h" |
float Get
(
SmartName::UID_Type InUid,
bool & OutIsValid,
float InDefaultValue
) const
Get(FName, bool &, float)
Description
Get Value of curve named InName with validation and default value Note that this performs a binary search per-call. Consider using a ForEach* or one of the bulk APIs (e.g. UE::Anim::FCurveUtils::BulkGet) call to get multiple element's flags.
| Name | Get |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Public/Animation/AnimCurveTypes.h |
| Include Path | #include "Animation/AnimCurveTypes.h" |
float Get
(
FName InName,
bool & OutHasElement,
float InDefaultValue
) const
the value of the curve element. If this curve does not contain an element with the supplied name, returns InDefaultValue
Parameters
| Name | Remarks |
|---|---|
| InName | the name of the curve element to get |
| HasElement | whether this curve contains the supplied named element |
| InDefaultValue | the default value to use in case the curve does not contain the supplied element |