http://answers.unity3d.com/questions/174002/what-is-the-relationship-between-camera-size-units.html
Screen.size는 유니티 화면 크기를 말하는 거고, 보통 카메라 화면을 ScreenSize로 하고 싶은 것이므로 다음과 같이 구하는 것이 좋다.
- Question
What is the relationship between camera size, units, mesh size and resolution?
- Solution
The height is 2 * size, and the width is height * aspect. You can calculate them with these instructions:
var height = 2*Camera.main.orthographicSize;
var width = height*Camera.main.aspect;
반응형
'게임 > Unity3D' 카테고리의 다른 글
[Unity] IsPointerOverGameObject: UI 클릭 시 게임오브젝트도 클릭될 때 사용 (0) | 2016.08.28 |
---|---|
[Unity 5.0] 알아야 할 것들1 link (0) | 2016.08.22 |
[EZ GUI] GUI 카메라와 Main 카메라를 따로 둘 때 Ray 문제 (0) | 2014.06.17 |
[Unity] 유니티를 사용하면서 생기는 자잘한 오류와 해결방법모음 (0) | 2014.06.09 |
[Unity] 창 포커스에 상관없이 background로도 돌게 하기 (0) | 2014.06.09 |
[Unity] itween easetype demo (0) | 2014.06.08 |
[Unity] 카메라 여러 개 사용 시 RayCast 꼬임 문제 (0) | 2014.06.08 |
[Unity3D] AnimationEvent 사용 (0) | 2013.05.03 |
[Unity3D] Monobehavior 상속받은 스크립트 변수 보이기 제어 (System.NonSerialized, System.Serialized) (0) | 2013.05.02 |
[Unity3D] 팁. 되도록이면 싱글턴을 쓰지 말고.. Dontdestroy뭐시기 함수로 남겨두는 걸 추천한다. (0) | 2013.05.02 |