[유니티 스크립트 소스] 마우스를 이용한 Orbit 카메라
2020. 2. 19.
마우스를 이용하여, 선택한 오브젝트 주위를 회전하거나 줌인, 줌아웃이 되는 카메라입니다. 유니티에서 FreeLookCamera가 있긴 하지만, 이 소스가 더 간단합니다. using UnityEngine; [RequireComponent(typeof(Camera))] public class OrbitCamera : MonoBehaviour { public Transform m_Target; public float m_Distance = 5.0f; public float m_XSpeed = 120.0f; public float m_YSpeed = 120.0f; public float m_YMinLimit = -20f; public float m_YMaxLimit = 80f; public float m_Dis..