반응형
코드 작성
레이 캐스트를 활용합니다
using UnityEngine;
public class TouchEvent : MonoBehaviour {
void Update()
{
if (Input.GetMouseButtonDown(0))
{
Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
RaycastHit hit;
if (Physics.Raycast(ray, out hit))
{
Debug.Log("터치된 오브젝트: " + hit.transform.name);
}
}
}
}
참고할만한 글
반응형