Translate the transform in a direction in local (parent) space. This will add to its current position @param delta the change to apply */
| 129 | @param delta the change to apply |
| 130 | */ |
| 131 | inline void Transform::LocalTranslateDelta(const vector3& delta) { |
| 132 | //set position value |
| 133 | position = (vector3)position + delta; |
| 134 | } |
| 135 | |
| 136 | /** |
| 137 | Overwrite the position of the transform with a new position in local (parent) space |
no outgoing calls