| 1191 | |
| 1192 | #if WITH_EDITOR |
| 1193 | TMap<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 | |
| 1203 | TArray<FPinRecord> UFlowNode::GetPinRecords(const FName& PinName, const EEdGraphPinDirection PinDirection) const |
| 1204 | { |