📜  unity3d 四元数加 90 度 - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:24.491000             🧑  作者: Mango

代码示例1
//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);