public void OnTriggerEnter(Collider other)
 {
     Debug.Log("Collision with " + other);
     if (other.tag == "ComputerStartTag")
     {
         sm.ResetPuzzlePiece();
     }
 }