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

Method IsInputConnected

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

Source from the content-addressed store, hash-verified

765}
766
767bool UFlowNode::IsInputConnected(const FName& PinName, bool bErrorIfPinNotFound) const
768{
769 if (const FFlowPin* FlowPin = FindFlowPinByName(PinName, InputPins))
770 {
771 return IsInputConnected(*FlowPin);
772 }
773
774 if (bErrorIfPinNotFound)
775 {
776 LogError(FString::Printf(TEXT("Unknown pin %s"), *PinName.ToString()), EFlowOnScreenMessageType::Temporary);
777 }
778
779 return false;
780}
781
782bool UFlowNode::IsOutputConnected(const FName& PinName, bool bErrorIfPinNotFound) const
783{

Callers

nothing calls this directly

Calls 2

ToStringMethod · 0.80
IsExecPinMethod · 0.80

Tested by

no test coverage detected