📜  c# 如何使对象永远旋转 - C# 代码示例

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

代码示例1
//Use FixedUpdate instead of Update for physics, rotation, and movement.
void FixedUpdate()
    {
        laserPointer.Rotate(x, y, z);
          //Use your own rotation values to replace x, y and z.
    }