GetMouseButtonDown 는 게임화면을 마우스로 클릭했을 때 작동하는 함수이다. (모바일에서는 탭하는 순간에 작동한다.)
아주 간단한 예를 들어 아래와 같이 스크립트를 작성할 수 있다.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Player : MonoBehaviour
{
void Update()
{
if(Input.GetMouseButtonDown(0))
{
print("안녕");
}
}
}
저장 후 플레이한 뒤 Game 화면에소 오브젝트를 클릭하면 콘솔창에 안녕이라는 글이 출력된다.
(Scene 화면이 아니라 Game 화면에서 클릭해야 출력된다. )
다른 입력 함수 종류는 아래 참고
https://greenchoco.tistory.com/219
728x90
댓글