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

RigidbodyConstraints.FreezePosition

建议修改

成功!

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

关闭

提交失败

由于某些原因,您的修改建议无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 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 positions.

using UnityEngine;

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

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

void Update() { //Press space to add constraints on the RigidBody (Freezing the position) if (Input.GetKeyDown(KeyCode.Space)) { //Freeze all positions m_Rigidbody.constraints = RigidbodyConstraints.FreezePosition; }

//Press the up arrow key to move positively in the y axis if the constraints are removed if (Input.GetKeyDown(KeyCode.UpArrow)) { //If the constraints are removed, the Rigidbody moves along the y axis //If the constraints are there, no movement occurs m_Rigidbody.velocity = m_YAxis; }

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