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

Method CountNumberedInputs

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

Source from the content-addressed store, hash-verified

250}
251
252uint8 UFlowNode::CountNumberedInputs() const
253{
254 uint8 Result = 0;
255 for (const FFlowPin& Pin : InputPins)
256 {
257 if (Pin.PinName.ToString().IsNumeric())
258 {
259 Result++;
260 }
261 }
262 return Result;
263}
264
265uint8 UFlowNode::CountNumberedOutputs() const
266{

Callers 1

AddUserInputMethod · 0.80

Calls 1

ToStringMethod · 0.80

Tested by

no test coverage detected