[글자를 출력하고 싶을 때]
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
'유니티 C# > C#' 카테고리의 다른 글
C#기초 - 숫자, 문자열 사칙연산하기 (0) | 2023.04.09 |
---|---|
C#기초 - 문자열형 string 이란? (0) | 2023.04.09 |
C#기초 - 코딩 기본 구조 (변수, 함수) (0) | 2023.04.09 |
C#기초 - 자주 사용하는 데이터형(자료형) 종류 (int, float, string, char, bool, double) (0) | 2023.04.08 |
C#기초 - 인스턴스란? (예약어 new를 통한 인스턴스화) (0) | 2023.03.22 |
댓글