uGUI 에서 UI를 stretch 로 설정하면 sizeDelta 로는 정상적인 사이즈가 나오지 않습니다.
이 때 RectTransform 에 있는 rect 를 이용하면 해당 UI 의 사이즈를 알아 낼 수 있습니다.
RectTransform rectTransform; rectTransform = GetComponent<RectTransform>(); float width = rectTransform.rect.width; float height = rectTransform.rect.height;
'Development > Unity3d' 카테고리의 다른 글
Unity sending message header failed (0) | 2017.03.03 |
---|---|
APK 빌드시 컴파일러 오류 (0) | 2016.10.24 |
유니티 타이젠 빌드 방법 (0) | 2016.03.29 |
Unity3d Admob 추가시 AdSize 를 찾을 수 없는 문제 (0) | 2015.12.21 |
Unity3d 구글 플레이 서비스 연동 에러 해결방법 (0) | 2015.12.11 |