MCPcopy Create free account
hub / github.com/MothCocoon/FlowGraph / GetWireRecords

Method GetWireRecords

Source/Flow/Private/Nodes/FlowNode.cpp:1193–1201  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1191
1192#if WITH_EDITOR
1193TMap<uint8, FPinRecord> UFlowNode::GetWireRecords() const
1194{
1195 TMap<uint8, FPinRecord> Result;
1196 for (const TPair<FName, TArray<FPinRecord>>& Record : OutputRecords)
1197 {
1198 Result.Emplace(OutputPins.IndexOfByKey(Record.Key), Record.Value.Last());
1199 }
1200 return Result;
1201}
1202
1203TArray<FPinRecord> UFlowNode::GetPinRecords(const FName& PinName, const EEdGraphPinDirection PinDirection) const
1204{

Callers 1

BuildPathsMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected