![](https://tistory1.daumcdn.net/tistory_admin/blogs/image/category/new_ico_5.gif)
RectTransformUtility.ScreenPointToLocalPointInRectangle ScreenPoint(스크린 좌표)를 RectTransform 좌표계의 Local Point로 변환시켜주는 함수이다. public static bool ScreenPointToLocalPointInRectangle(RectTransform rect, Vector2 screenPoint, Camera cam, out Vector2 localPoint);파라미터를 살펴보면 첫번째 파라미터는 변환 기준 좌표계의 Canvas RectTransform두번째 파라미터는 출력하고자 하는 스크린 좌표세번째 파라미터는 스크린좌표와 연관된 카메라네번째 파라미터는 변환된 좌표를 저장할 변수 이다 예시를 잠깐 보면public ..