마우스 휠 스크롤 확인
Unity3D/Script / 2013. 1. 31. 11:56
1 if(Input.GetAxis("Mouse ScrollWheel") < 0) 2 { 3 // Zoom In 4 } 5 6 if(Input.GetAxis("Mouse ScrollWheel") > 0) 7 { 8 // Zoom Out 9 }
반응형
'Unity3D > Script' 카테고리의 다른 글
새로운 창으로 카메라 뷰어 만들기 (0) | 2013.02.05 |
---|---|
How to create an editor screenview like "camera preview" window for cameras? (0) | 2013.02.04 |
오브젝트 카메라 프러스텀 안에 가두기 (0) | 2013.01.29 |
Using GUI slider to control animation on object (0) | 2013.01.27 |
InGame Button (0) | 2012.12.14 |