Jak uwolnić rotację w jednostce zderzakowej 2d

public Rigidbody2D rb;

void Start()
{
	rb.constraints = RigidbodyConstraints2D.None;
}
Dull Dingo