Persatuan menonaktifkan semua colliders dari GameObject
public void SetAllCollidersStatus (bool active) {
foreach(Collider c in GetComponents<Collider> ()) {
c.enabled = true; //Or false if you want to desactivate them all
}
}
Tartaud