Comment ajouter Rigidbody comme variable

public Rigidbody rigid;

void Start() {
  rigid = GetComponent<Rigidbody> ();
}
Brainy Bison