Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/Animation > API/Runtime/Engine/Animation/FCurveUtils
References
| Module | Engine |
| Header | /Engine/Source/Runtime/Engine/Public/Animation/AnimCurveUtils.h |
| Include | #include "Animation/AnimCurveUtils.h" |
template<typename CurveType0, typename CurveType1, typename ValuePredicateType>
static void BulkGet
&40;
const CurveType0 & InCurve,
const CurveType1 & InBulkCurves,
const ValuePredicateType & InValuePredicate
&41;
Remarks
Extracts elements from curves in bulk. This is more efficient that just calling Curve.Get() repeatedly.
Parameters
| Name | Description |
|---|---|
| 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 |