유니티 리스트 list 선언
유니티 프로젝트를 진행하면서 배열을 자주 쓰곤 했는데 이번 기회로 리스트를 공부해 써보고자 list에 대하여 공부하였다. using System.Collections; using System.Collections.Generic; using UnityEngine; public class test : MonoBehaviour { void Start() { //리스트 선언 List list = new List(); //리스트 더하기 list.Add(1); list.Add(2); list.Add(3); //콘솔 보여주기 foreach(var num in list) { Debug.Log(num); } //현재 리스트 개수 Debug.Log("list Count :: " + list.Count); //2 번째 인덱..
프로그래밍/유니티
2021. 2. 22. 16:03