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

Method IsOutputConnected

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

Source from the content-addressed store, hash-verified

780}
781
782bool UFlowNode::IsOutputConnected(const FName& PinName, bool bErrorIfPinNotFound) const
783{
784 if (const FFlowPin* FlowPin = FindFlowPinByName(PinName, OutputPins))
785 {
786 return IsOutputConnected(*FlowPin);
787 }
788
789 if (bErrorIfPinNotFound)
790 {
791 LogError(FString::Printf(TEXT("Unknown pin %s"), *PinName.ToString()), EFlowOnScreenMessageType::Temporary);
792 }
793
794 return false;
795}
796
797FFlowPin* UFlowNode::FindInputPinByName(const FName& PinName)
798{

Callers

nothing calls this directly

Calls 2

ToStringMethod · 0.80
IsExecPinMethod · 0.80

Tested by

no test coverage detected