private void OnTriggerEnter(Collider other) { if (_carControl.ReturnSpeed() > 10f) { TakeDamage(); } if (other.CompareTag("Cop")) { TakeDamage(); } }