728x90 유니티 콘솔 출력2 C#기초 - print 함수 (Debug.Log 와 비슷하지만 다른 함수) 콘솔창에 글을 출력해주는 Debug.Log 함수와 비슷한 함수지만 print 함수는 오브젝트에 적용해야 콘솔창에 출력된다.(Debug.Log 는 오브젝트에 적용하지 않고 그냥 저장만 해두어도 출력되지만 이건 오브젝트에 적용해야 출력된다. )using System.Collections;using System.Collections.Generic;using UnityEngine;public class study : MonoBehaviour{ // Start is called before the first frame update void Start() { print("안녕하세요 !"); print(1+1); print(2-1);.. 2024. 4. 11. C#기초 - Debug.Log("Console 창에 출력하는 문자열"); [글자를 출력하고 싶을 때]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 [.. 2023. 4. 8. 이전 1 다음 728x90