Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/TBaseBlendedCurve
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void Set
(
SmartName::UID_Type InUid, |
Animation/AnimCurveTypes.h | ||
| Set value of curve named InName to InValue. | Animation/AnimCurveTypes.h |
Set(SmartName::UID_Type, float)
| Name | Set |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Public/Animation/AnimCurveTypes.h |
| Include Path | #include "Animation/AnimCurveTypes.h" |
void Set
(
SmartName::UID_Type InUid,
float InValue
)
Set(FName, float)
Description
Set value of curve named InName to InValue. Inserts a new value if an element for InName does not already exist. Note that this performs a binary search per-call and can potentially cause a re-sort. Consider using a combiner operation to set multiple element's values.
| Name | Set |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Public/Animation/AnimCurveTypes.h |
| Include Path | #include "Animation/AnimCurveTypes.h" |
void Set
(
FName InName,
float InValue
)
Parameters
| Name | Remarks |
|---|---|
| InName | the name of the curve to set |
| InValue | the value of the curve to set |