| 413 | } |
| 414 | |
| 415 | uint32_t Node::getNodeCount() const noexcept { |
| 416 | uint32_t count = 1; |
| 417 | ARRAY_START(Node, child, _children) { |
| 418 | count += child->getNodeCount(); |
| 419 | } |
| 420 | ARRAY_END |
| 421 | return count; |
| 422 | } |
| 423 | |
| 424 | void Node::onEnter() { |
| 425 | ARRAY_START(Node, child, _children) { |