Instantiate 개념 Object를 인스턴스화해서 복제하는 명령어입니다. 일반적으로 프리팹을 복제해 인스턴트화 할 때 많이 사용합니다. 함수 public static Object Instantiate(Object original, Vector3 position, Quaternion rotation, Transform parent); 의 형태를 띄며 Object original 을 제외한 인자는 필요할 때 사용하시면 됩니다. original An existing object that you want to make a copy of. : 일반적으로 복제하고자 하는 prefab 입니다. position Position for the new object. : 새로 생성될 개체의 위치입니다. rotation..