| 250 | } |
| 251 | |
| 252 | uint8 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 | |
| 265 | uint8 UFlowNode::CountNumberedOutputs() const |
| 266 | { |