Answers for "how to clone somthing unity"

C#
3

clone gameobject unity c#

public GameObject rootObj;

void Start()
{
    GameObject duplicate = Instantiate(rootObj);
}
Posted by: Guest on July-06-2020
0

how to clone somthing unity

public GameObject GameOjectYouWantToClone;

GameObject CloneOfGameOject = Instantiate(GameOjectYouWantToClone);
Posted by: Guest on October-30-2020

Code answers related to "how to clone somthing unity"

C# Answers by Framework

Browse Popular Code Answers by Language