unity3d quaternion adicione 90 graus
//This way you can add a specific of degree (in this case 90 on y)
//to a specific axis
rotation *= Quaternion.Euler(0, 90, 0);
Colorful Capuchin