예제 #1
0
 // 역 이외의 곳을 클릭하였을 경우를 처리하는 함수
 private void TouchOther()
 {
     if (!startImg.activeSelf)
     {
         return;
     }
     nowStation = null;
     startImg.SetActive(false);
     if (!endImg.activeSelf)
     {
         return;
     }
     aStar.DestroyRings();
     destination = null;
     endImg.SetActive(false);
 }