绕着一个点旋转 : transform.RotateAround(Vector3.zero, Vector3.up, speed* Time.deltaTime ); 第一个参数,点的位置.第二个参数,法线方向,第三个参数,速度.如图时针旋转. 旋转固定角度 gameObject.transform.rotation = Quaternion.Slerp(gameObject.transform.rotation, Quaternion.Euler(,, ), ); 第一个参数起始角度,第二参数…