void OnTriggerExit2D(Collider2D other)
 {
     if (other.gameObject.tag == "Box" || other.gameObject.tag == "BoxHit")
     {
         bc.LoadOnTriggerExit2D(other, gameObject.name);
     }
 }