[유니티 스크립트 소스] 마우스(Mouse) 관련
2020. 3. 24.
1. Input 클래스 1.1 마우스 버튼 (1) 함수 함수 설명 bool GetMouseButtonDown (int button); 마우스 버튼을 누른 프레임 동안 true를 반환 bool GetMouseButton (int button); 마우스 버튼이 눌렸는지 여부를 반환 bool GetMouseButtonUp (int button); 마우스 버튼에서 손을 뗏을 때 true를 반환 (2) 매개 변수 (int button) 매개변수 설명 0 마우스 왼쪽 버튼 1 마우스 오른쪽 버튼 2 마우스 휠 버튼 3 ~ 6 마우스 추가 버튼 (3) 데모 using UnityEngine; public class DemoMouseInputClass : MonoBehaviour { void Update() { if (..