Answers for "how to unfreeze a rotation in a collider unity 2d"

1

how to unfreeze a rotation in a collider unity 2d

public Rigidbody2D rb;

void Start()
{
	rb.constraints = RigidbodyConstraints2D.None;
}
Posted by: Guest on May-27-2021

Code answers related to "how to unfreeze a rotation in a collider unity 2d"

Browse Popular Code Answers by Language