Hello,
I know this is an easy fix. I must be missing something, i want to disable all bridge body constraints on the object that the script as attached to. For some reason i cant seem to access “this” gameobject.
I have tried:
//Cause the menu to FALL to the Ground
this.gameObject.GetComponent.rigidbody.constraints = RigidbodyConstraints.none;
I have also tried:
//Cause the menu to FALL to the Ground
this.gameObject.rigidbody.constraints = RigidbodyConstraints.none;
and:
//Cause the menu to FALL to the Ground
this.rigidbody.constraints = RigidbodyConstraints.none;
Any Help will be appreciated! I will take the time to mark it correct too if your answer is of help. Thanks!
Daniel