| 1954 | } |
| 1955 | |
| 1956 | void Node::updateTransform() |
| 1957 | { |
| 1958 | // Recursively iterate over children |
| 1959 | for (const auto& child : _children) |
| 1960 | child->updateTransform(); |
| 1961 | } |
| 1962 | |
| 1963 | // MARK: components |
| 1964 |
no outgoing calls
no test coverage detected