[Unity] Mouse 이벤트 (다운, 업, 클릭, 드래그)
[Unity] Mouse 이벤트 (다운, 업, 클릭, 드래그) 마우스 다운, 업 이벤트 - PointerEventData로 pointerId, position 등을 알수 있다. using UnityEngine; using UnityEngine.EventSystems; public class Example : MonoBehaviour, IPointerDownHandler, IPointerUpHandler { //Detect current clicks on the GameObject (the one with the script attached) public void OnPointerDown(PointerEventData pointerEventData) { //Output the name of the Game..