TranslateY translates the specified distance on the local Y axis.
(dist float32)
| 536 | |
| 537 | // TranslateY translates the specified distance on the local Y axis. |
| 538 | func (n *Node) TranslateY(dist float32) { |
| 539 | |
| 540 | n.TranslateOnAxis(&math32.Vector3{0, 1, 0}, dist) |
| 541 | } |
| 542 | |
| 543 | // TranslateZ translates the specified distance on the local Z axis. |
| 544 | func (n *Node) TranslateZ(dist float32) { |
nothing calls this directly
no test coverage detected