TweenRotation的参数类型是四元数Quaternion类型,如果想用Vector3类型(欧拉角),可以这样: Quaternion rotation = Quaternion.Euler(transform.eulerAngles); 把计算后的rotation 作为TweenRotation的参数即可。