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

RigidbodyConstraints.FreezeRotation

提出修改内容

成功提交!

感谢您帮助我们提升 Unity 文档的质量。我们不能接受所有提交的内容,但我们会阅读用户提出的每项修改内容建议,并在适当的时候进行更新。

关闭

提交失败

由于某些原因,您提出的修改内容建议未能提交。请过几分钟再重试。感谢您花时间帮助我们提升 Unity 文档的质量。

关闭

取消

说明

冻结所有轴的旋转。

//Attach this script to a GameObject with a Rigidbody. Press the up and down keys to move the Rigidbody up and down.
//Press the space key to freeze all rotations, but notice the positions still change.

using UnityEngine;

public class Example : MonoBehaviour { Rigidbody m_Rigidbody; Vector3 m_YAxis; float m_Speed;

void Start() { m_Rigidbody = GetComponent<Rigidbody>(); //Set up vector for moving the Rigidbody in the y axis m_YAxis = new Vector3(0, 5, 0); m_Speed = 20.0f; }

void Update() { //Press space to add constraints on the RigidBody (freeze all rotations) if (Input.GetKeyDown(KeyCode.Space)) { //Freeze all rotations m_Rigidbody.constraints = RigidbodyConstraints.FreezeRotation; }

//Press the up arrow key to move positively in the y axis if (Input.GetKeyDown(KeyCode.UpArrow)) { //The Rigidbody moves along the y axis m_Rigidbody.velocity = m_YAxis; }

//Press the down arrow key to move negatively in the y axis if (Input.GetKeyDown(KeyCode.DownArrow)) { m_Rigidbody.velocity = -m_YAxis; }

//Press the A key to rotate the GameObject (if there are no rotation constraints) if (Input.GetKey(KeyCode.A)) { m_Rigidbody.angularVelocity = Vector3.right * m_Speed * Time.deltaTime; } } }