본문 바로가기

Unity/Tips 13.05.06

[ 유니티(Unity 3D) 팁 ] List 사용법

List 사용법


C++ 의 STL List 와 같은 자료형을 유니티에서도 사용할 수 있다.


System.Collections.Generic 네임스페이스를 스크립트에 포함시킨후 


"List<타입> 변수명" 식으로 사용하면 된다.




코드


using System.Collections.Generic;  추가


public class MainClass{


void Start(){


List<Car> Cars = new List<Car>();


Car car = new Car();


car.Name = "MyCar";


Cars.Add(car); 


}

}




참고


http://blog.naver.com/PostView.nhn?blogId=taxhon&logNo=60124971161&redirect=Dlog&widgetTypeCall=true