| 170 | } |
| 171 | |
| 172 | Vector3 GLTFNode::get_scale() { |
| 173 | return transform.basis.get_scale(); |
| 174 | } |
| 175 | |
| 176 | void GLTFNode::set_scale(Vector3 p_scale) { |
| 177 | transform.basis = transform.basis.orthonormalized() * Basis::from_scale(p_scale); |
no outgoing calls
no test coverage detected