private void OnTriggerEnter(Collider other)
 {
     if (other.CompareTag("Wand"))
     {
         gameManager.NextLevel();
     }
 }