
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
제목과 같습니다. 어떻게 하면 콘솔창에 스크립트 관련 내용이 나오게 할 수 있나요?

[강의 中..]

[본인 유니티 중]
# 스크립트
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Rtan : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
Debug.Log("안녕");
}
// Update is called once per frame
void Update()
{
}
}
