Answers for "how to reference a clone in unity"

C#
2

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 reference a clone in unity"

C# Answers by Framework

Browse Popular Code Answers by Language