유니티 입문 - 기본 문법(1)
using System.Collections; using System.Collections.Generic; using UnityEngine; public class NewBehaviourScript : MonoBehaviour { void Start() { Debug.Log("Hello Unity!"); int level; float strength; string playerName; bool isFullLevel; } } 저번에 Hello Unity! 문구 출력에 이어서 오늘은 기본 문법 학습을 진행하겠습니다. 변수 : 데이터를 메모리에 저장하는 장소 변수에는 크게 int, float, string, bool 이렇게 네가지 종류가 있습니다. int : 정수형 데이터 (1, 2, 3, ...) float..