“instanuj obiekt wewnątrz jedności obiektu” Kod odpowiedzi

instanuj obiekt wewnątrz jedności obiektu

var newObj = GameObject.Instantiate(somePrefabReference);
newObj.transform.parent = GameObject.Find("EmptyGameObject").transform;
Grieving Guanaco

instanuj obiekt wewnątrz jedności obiektu

// Makes the camera follow this object by
// making it a child of this transform.
 
// Get the transform of the camera
var cameraTransform = Camera.main.transform;    
 
// make it a child of the current object
cameraTransform.parent = transform;
 
// place it behind the current object
cameraTransform.localPosition = -Vector3.forward * 5;
 
// make it point towards the object
cameraTransform.LookAt(transform);
Grieving Guanaco

Odpowiedzi podobne do “instanuj obiekt wewnątrz jedności obiektu”

Pytania podobne do “instanuj obiekt wewnątrz jedności obiektu”

Więcej pokrewnych odpowiedzi na “instanuj obiekt wewnątrz jedności obiektu” w C#

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu