how to clone something unity
public GameObject GameOjectYouWantToClone;
GameObject CloneOfGameOject = Instantiate(GameOjectYouWantToClone);
how to clone something unity
public GameObject GameOjectYouWantToClone;
GameObject CloneOfGameOject = Instantiate(GameOjectYouWantToClone);
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
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us