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

Method GetPinRecords

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

Source from the content-addressed store, hash-verified

1201}
1202
1203TArray<FPinRecord> UFlowNode::GetPinRecords(const FName& PinName, const EEdGraphPinDirection PinDirection) const
1204{
1205 switch (PinDirection)
1206 {
1207 case EGPD_Input:
1208 return InputRecords.FindRef(PinName);
1209 case EGPD_Output:
1210 return OutputRecords.FindRef(PinName);
1211 default:
1212 return TArray<FPinRecord>();
1213 }
1214}
1215
1216#endif
1217

Callers 1

GetPinHoverTextMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected