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

Method CountNumberedOutputs

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

Source from the content-addressed store, hash-verified

263}
264
265uint8 UFlowNode::CountNumberedOutputs() const
266{
267 uint8 Result = 0;
268 for (const FFlowPin& Pin : OutputPins)
269 {
270 if (Pin.PinName.ToString().IsNumeric())
271 {
272 Result++;
273 }
274 }
275 return Result;
276}
277
278TArray<FName> UFlowNode::GetInputNames() const
279{

Callers 1

AddUserOutputMethod · 0.80

Calls 1

ToStringMethod · 0.80

Tested by

no test coverage detected