unity clone gameobject code example
Example 1: how to clone something unity
public GameObject GameOjectYouWantToClone;
GameObject CloneOfGameOject = Instantiate(GameOjectYouWantToClone);
Example 2: clone gameobject unity c#
public GameObject rootObj;
void Start()
{
GameObject duplicate = Instantiate(rootObj);
}
Example 3: untiy instanciate prefab
Instantiate(prefab, new Vector3(i * 2.0F, 0, 0), Quaternion.identity);