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

Method GetAddOnDescriptions

Source/Flow/Private/Nodes/FlowNodeBase.cpp:733–747  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

731}
732
733FString UFlowNodeBase::GetAddOnDescriptions() const
734{
735 FString Result;
736
737 for (const UFlowNodeBase* Addon : AddOns)
738 {
739 const FString& Description = Addon->GetNodeDescription();
740 if (!Description.IsEmpty())
741 {
742 Result.Append(Description).Append(LINE_TERMINATOR);
743 }
744 }
745
746 return Result;
747}
748
749bool UFlowNodeBase::CanModifyFlowDataPinType() const
750{

Callers 1

GetNodeDescriptionMethod · 0.80

Calls 2

IsEmptyMethod · 0.80
GetNodeDescriptionMethod · 0.45

Tested by

no test coverage detected