Navigation
API > API/Plugins > API/Plugins/UAF > API/Plugins/UAF/FInterpolate
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static void Apply
(
const FValueTransformerMapPtr& TransformerMap, |
Interpolate attribute values Output = lerp(A, B, WeightB) Output = (A * (1.0 - WeightB)) + (B * WeightB) This function supports outputting to either input | UAF/ValueRuntime/Transformers/Interpolate.h | |
static void Apply
(
const FValueTransformerMapPtr& TransformerMap, |
Interpolate attribute values If a weight isn't specified, the default weight will be used Output = lerp(A, B, HasValueWeightB ? ValueWeightB : DefaultWeightB) This function supports outputting to either input | UAF/ValueRuntime/Transformers/Interpolate.h |
Apply(const FValueTransformerMapPtr &, const FValueBundle &, const FValueBundle &, float, FValueBundle &)
Description
Interpolate attribute values Output = lerp(A, B, WeightB) Output = (A * (1.0 - WeightB)) + (B * WeightB) This function supports outputting to either input
| Name | Apply |
| Type | function |
| Header File | /Engine/Plugins/Experimental/UAF/UAF/Source/UAF/Public/UAF/ValueRuntime/Transformers/Interpolate.h |
| Include Path | #include "UAF/ValueRuntime/Transformers/Interpolate.h" |
| Source | /Engine/Plugins/Experimental/UAF/UAF/Source/UAF/Private/UAF/ValueRuntime/Transformers/Interpolate.cpp |
static void Apply
(
const FValueTransformerMapPtr & TransformerMap,
const FValueBundle & InputA,
const FValueBundle & InputB,
float WeightB,
FValueBundle & Output
)
Apply(const FValueTransformerMapPtr &, const FValueBundle &, const FValueBundle &, const FValueBundle &, float, FValueBundle &)
Description
Interpolate attribute values If a weight isn't specified, the default weight will be used Output = lerp(A, B, HasValueWeightB ? ValueWeightB : DefaultWeightB) This function supports outputting to either input
| Name | Apply |
| Type | function |
| Header File | /Engine/Plugins/Experimental/UAF/UAF/Source/UAF/Public/UAF/ValueRuntime/Transformers/Interpolate.h |
| Include Path | #include "UAF/ValueRuntime/Transformers/Interpolate.h" |
| Source | /Engine/Plugins/Experimental/UAF/UAF/Source/UAF/Private/UAF/ValueRuntime/Transformers/Interpolate.cpp |
static void Apply
(
const FValueTransformerMapPtr & TransformerMap,
const FValueBundle & InputA,
const FValueBundle & InputB,
const FValueBundle & PerValueWeightsB,
float DefaultWeightB,
FValueBundle & Output
)