private void OnTriggerEnter(Collider other)
 {
     if (other.tag.Equals("Player"))
     {
         qc.UpdateQuestsBar();
     }
 }