Dreaming Deve1oper

CharacterController 충돌 시 로그 띄워주기 본문

유니티

CharacterController 충돌 시 로그 띄워주기

주현테크 2022. 5. 30. 20:59

캐릭터 오브젝트

 

 

 

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class collision : MonoBehaviour
{
    void OnControllerColliderHit(ControllerColliderHit hit)
    {
        if (hit.gameObject.CompareTag("Art")) // "Art" Tag는 상황에 알맞게 임의로 변경
        {
            Debug.Log("Test"); // "Art" Tag 오브젝트에 충돌 시 로그 출력
        }
    }
}

 

 

"Art" Tag를 가진 오브젝트에 충돌 시, Test Log 출력

 

 

 

Comments