Navigation
API > API/Plugins > API/Plugins/DataflowNodes > API/Plugins/DataflowNodes/FMorphTargetProxy
Description
Linearly interpolates the morph-target position deltas of the three triangle vertices using BaryWeights and writes the resulting delta to VertexID on the destination attribute. Must be called after GetOrCreateDestAttribute.
| Name | Transfer |
| Type | function |
| Header File | /Engine/Plugins/Dataflow/Source/DataflowNodes/Public/Dataflow/Transfer/TransferAttributes.h |
| Include Path | #include "Dataflow/Transfer/TransferAttributes.h" |
void Transfer
(
const int32 VertexID,
const FIndex3i & Triangle,
const FVector3f & BaryWeights
) const
Parameters
| Name | Remarks |
|---|---|
| VertexID | Target mesh vertex to write the interpolated delta to. |
| Triangle | Indices of the three source mesh vertices forming the enclosing triangle. |
| BaryWeights | Barycentric blend weights (sum to 1) for the three triangle vertices. |