Answers for "how to stop unity from adding (clone) to a gameobject"

C#
1

how to clone something unity

public GameObject GameOjectYouWantToClone;

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

Code answers related to "how to stop unity from adding (clone) to a gameobject"

C# Answers by Framework

Browse Popular Code Answers by Language