| 9 | |
| 10 | #if WITH_EDITOR |
| 11 | FFlowPin FFlowNamedDataPinProperty::CreateFlowPin() const |
| 12 | { |
| 13 | if (const FFlowDataPinValue* FlowDataPinValuePtr = DataPinValue.GetPtr<FFlowDataPinValue>()) |
| 14 | { |
| 15 | if (const FFlowPinType* FlowPinType = FFlowPinType::LookupPinType(FlowDataPinValuePtr->GetPinTypeName())) |
| 16 | { |
| 17 | return FlowPinType->CreateFlowPinFromValueWrapper(Name, *FlowDataPinValuePtr); |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | return FFlowPin(); |
| 22 | } |
| 23 | |
| 24 | FText FFlowNamedDataPinProperty::BuildHeaderText() const |
| 25 | { |
no test coverage detected