“Unity3d Quaternion Добавить 90 градусов” Ответ

Unity3d Quaternion Добавить 90 градусов

//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

Unity3d Quaternion Добавить 90 градусов

//This does the rotation around the y axis
transform.Rotate(new Vector3(0, 90, 0));
Famous Fish

Ответы похожие на “Unity3d Quaternion Добавить 90 градусов”

Вопросы похожие на “Unity3d Quaternion Добавить 90 градусов”

Больше похожих ответов на “Unity3d Quaternion Добавить 90 градусов” по C#

Смотреть популярные ответы по языку

Смотреть другие языки программирования