版本: Unity 6 (6000.0)
语言英语
  • C#

Rigidbody.rotation

建议修改

成功!

感谢您帮助我们改进 Unity 文档的质量。虽然我们无法接受所有提交,但我们会阅读用户提出的每项修改建议,并在适用情况下进行更新。

关闭

提交失败

由于某种原因,您的修改建议无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们改进 Unity 文档的质量。

关闭

取消

切换到手册
public Quaternion rotation;

描述

Rigidbody 的旋转。

使用 Rigidbody.rotation 获取和设置 Rigidbody 的旋转,使用物理引擎。

使用 Rigidbody.rotation 更改 Rigidbody 的旋转将在下一个物理模拟步骤后更新 Transform。这比使用 Transform.rotation 更新旋转速度更快,因为 Transform.rotation 会导致所有附加的碰撞器重新计算其相对于 Rigidbody 的旋转,而 Rigidbody.rotation 会直接将值设置到物理系统。

如果您想连续旋转刚体,请使用 MoveRotation,它会考虑插值。

注意: rotation 是世界空间。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Start() { GetComponent<Rigidbody>().rotation = Quaternion.identity; } }