“unfreie Position in der Einheit” Code-Antworten

starrebody2d unfreeze Position

public Rigidbody2D rb;

void Start()
{
	rb.constraints = RigidbodyConstraints2D.None;
}
Comfortable Capybara

Unity starrkörperbeschränkungen frei entlesen

rb.constraints = RigidbodyConstraints.FreezePositionX | ~RigidbodyConstraints.FreezePositionY | RigidbodyConstraints.FreezePositionZ;
Confused Constrictor

unfreie Position in der Einheit

rb.constraints = RigidbodyConstraints.FreezePositionX | ~RigidbodyConstraints.FreezePositionY | RigidbodyConstraints.FreezePositionZ;
//to unfreeze a position/rotation put ~ before
Jolly Jellyfish

Ähnliche Antworten wie “unfreie Position in der Einheit”

Fragen ähnlich wie “unfreie Position in der Einheit”

Weitere verwandte Antworten zu “unfreie Position in der Einheit” auf C#

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen