반응형
GetPreferredHeight
PreferredHeight는 UI요소가 표시되기 위해 필요한 최소한의 높이다. 이를 UI요소의 위치를 조정하는데 사용된다.
public static float GetPreferredHeight(RectTransform rect);
매개변수
rect : PreferredHeight를 가져올 RectTransform 객체
사용 예시
float textHeight = LayoutUtility.GetPreferredHeight(storyText.rectTransform);
textHeight변수를 통해서 storyText의 위치를 조정할 수 있다.
반응형
'유니티 공부 > Unity' 카테고리의 다른 글
Unity - [SerializeField],직렬화, [System.Serializable] (0) | 2023.06.14 |
---|---|
Unity - RectTransform, anchoredPosition (0) | 2023.06.13 |
Unity - scrollRect.normalizedPosition 사용해서 맨 위로 스크롤 하기 (0) | 2023.06.13 |
Unity - Unity Recorder package(게임화면녹화) 설치하는 법 (0) | 2023.06.12 |
Unity - ScrollView, ScrollRect (0) | 2023.06.11 |
댓글