게임/Unity3D

[Unity] 카메라 화면 너비,높이 구하기. Screen.size가 아님.

Binceline 2014. 6. 9. 01:13

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;


반응형