Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/FCurveUtils
Description
Extracts elements from curves in bulk. This is more efficient that just calling Curve.Get() repeatedly.
| Name | BulkGet |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Public/Animation/AnimCurveUtils.h |
| Include Path | #include "Animation/AnimCurveUtils.h" |
template<typename CurveType0, typename CurveType1, typename ValuePredicateType>
static void BulkGet
(
const CurveType0 & InCurve,
const CurveType1 & InBulkCurves,
ValuePredicateType InValuePredicate
)
Parameters
| Name | Remarks |
|---|---|
| InCurve | The curve to get values from |
| InBulkCurves | The curve specifying values to get |
| InValuePredicate | Predicate to get each value. Signature: (const CurveType1::ElementType& InElement1, float InValue) -> void |