Version: 2017.3
public RigidbodyConstraints constraints ;

Descripción

Controla qué grados de libertad se permiten para la simulación de este Rigidbody.

By default this is set to RigidbodyConstraints.None, allowing rotation and movement along all axes. In some cases, you may want to constrain a Rigidbody to only move or rotate along some axes, for example when developing 2D games. You can use the bitwise OR operator to combine multiple constraints.

Tenga en cuenta que las restricciones de posición se aplican en el espacio mundial, y las restricciones de rotación se aplican en el espacio local.

//Attach this script to a GameObject. Attach a Rigidbody to the GameObject by clicking the GameObject in the Hierarchy and clicking the Add Component button. Search for Rigidbody in the field and select it when it shows.

using UnityEngine;

public class Example : MonoBehaviour { Rigidbody m_Rigidbody;

void Start() { m_Rigidbody = GetComponent<Rigidbody>(); //This locks the RigidBody so that it does not move or rotate in the Z axis. m_Rigidbody.constraints = RigidbodyConstraints.FreezePositionZ | RigidbodyConstraints.FreezeRotationZ; } }