public void OnTriggerEnter(Collider other)
 {
     if (other.gameObject.name == "_Player")
     {
         worldCtrl.GameOver();
     }
 }