📅  最后修改于: 2022-03-11 14:48:58.135000             🧑  作者: Mango
public void SetAllCollidersStatus (bool active) {
foreach(Collider c in GetComponents ()) {
c.enabled = true; //Or false if you want to desactivate them all
}
}