📜  如何使用脚本统一更改旋转 - C# 代码示例

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

代码示例1
var rotationVector = transform.rotation.eulerAngles;
rotationVector.z = 0;  //this number is the degree of rotation around Z Axis
transform.rotation = Quaternion.Euler(rotationVector);
//if you put this in a coroutine and yielding for some amount of time 
//you can have something like a rotating loading icon