Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

how to make among us clone in unity

to make clone of any gameObject you can write this code:-

public GameObject myObject; //this is GameObjectThatYouWantToClone

GameObject Clone = Instantiate(myObject); // now your clone of that gameobject is stored in "Clone" gameObject
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #clone #unity
ADD COMMENT
Topic
Name
5+8 =