앱 만들기/유니티2D 게임 만드는 방법

유니티 트레이스 출력 방법

나도처음이야 2024. 10. 30.
반응형

유니티에서 트레이스 코드를 출력하는 방법은

Debug.Log(); 함수를 사용하는 것 이다.

인자로 출력될 텍스트를 기재해주면 된다.

 

예제

using UnityEngine;

public class KeyInputMove : MonoBehaviour
{
    // Start is called once before the first execution of Update after the MonoBehaviour is created
    void Start()
    {
        Debug.Log("Start");
    }

    // Update is called once per frame
    void Update()
    {
        Debug.Log("Update");
    
    }
 
}

실행을 해보면,

Console 창에 트레이스가 찍히는 것을 확인 할 수 있다.

반응형

댓글