Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
rotations [2020/04/10 17:56] paul created |
— (current) | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Rotations ====== | ||
- | |||
- | Unity uses 3 rotation systems. | ||
- | |||
- | 1. Euler Angers - rotation about x, y, z axis | ||
- | 2. Axis Angle - A normalized Vector3 | ||
- | 3. Quaternions | ||
- | |||
- | |||
- | Converter from Quaternion to Euler: | ||
- | Vector3 inEuler = quaternionRotation.eulerAngles; | ||