script
[solved] Unity Scroll View position initialize
Unity Scroll View Content position reset 유니티에서 스크롤로 쭉 내린 후에, 다른 페이지 갔다가 다시 진입하면 그 위치 그대로 스크롤이 내려져 있다. -> 맨 위 리스트를 보기 위해서 위치를 초기화 하려고 한다. 한참 찾았는데 단순한 rect 위치 문제였다. 간단히 해결! 다들 헤매는 이유는 position 으로 접근한듯 anchoredPosition 임! 1 2 3 4 5 6 7 8 public RectTransform ScrollContent; public void setRectPosition() { float x = ScrollContents.anchoredPosition.x; ScrollContents.anchoredPosition = new Vector3(x, 0..