| 237 | } |
| 238 | |
| 239 | Vec2 Node::getAnchor() const noexcept { |
| 240 | if (_transform) return {_transform->anchorX, _transform->anchorY}; |
| 241 | return {0.5f, 0.5f}; |
| 242 | } |
| 243 | |
| 244 | Vec2 Node::getAnchorPoint() const noexcept { |
| 245 | if (_transform) return {_transform->anchorPointX, _transform->anchorPointY}; |
no outgoing calls
no test coverage detected