| 258 | } |
| 259 | |
| 260 | void Node::setHeight(float var) { |
| 261 | auto& transform = getTransform(); |
| 262 | transform.height = var; |
| 263 | transform.anchorPointY = transform.anchorY * var; |
| 264 | markDirty(); |
| 265 | } |
| 266 | |
| 267 | float Node::getHeight() const noexcept { |
| 268 | return GetTAttr(height); |
no test coverage detected