본문 바로가기
  • 불확실한 내일을 위해
유니티 C#/C#

C#기초 - Debug.Log("Console 창에 출력하는 문자열");

by 그린초코 2023. 4. 8.

[글자를 출력하고 싶을 때]

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

public class test : MonoBehaviour
{
    // Start is called before the first frame update
    void Start()
    {
        // Hello, World 를 Console창에 출력한다. 
        Debug.Log("Hello, World");

    }

    // Update is called once per frame
    void Update()
    {
        
    }
}

출력결과 : hello, world

 

[수치를 출력하고 싶을 때]

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

public class test : MonoBehaviour
{
    // Start is called before the first frame update
    void Start()
    {
        // 30를 Console창에 출력한다. 
        int age;
        age = 30;
        Debug.Log(age);

    }

    // Update is called once per frame
    void Update()
    {
        
    }
}

출력결과 : 30

728x90

댓글