Quantcast
Channel: Answers for "Rotating child object around X and Z from different angles causing issues"
Viewing all articles
Browse latest Browse all 6

Answer by cjdev

$
0
0
As FortisVenaliter said, this isn't a case of Gimbal Lock but of local vs world coordinate systems. Still, I'd recommend using Quaternions anyways because it's a good habit to get into. In this case it might look something like this: transform.rotation *= Quaternion.Euler(0, 0, 90f * value); Note that multiplying Quaternions is adding their rotations.

Viewing all articles
Browse latest Browse all 6

Trending Articles