| 263 | } |
| 264 | |
| 265 | uint8 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 | |
| 278 | TArray<FName> UFlowNode::GetInputNames() const |
| 279 | { |