“Instantiate objek di dalam objek Unity” Kode Jawaban

Instantiate objek di dalam objek Unity

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

Instantiate objek di dalam objek Unity

// 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

Jawaban yang mirip dengan “Instantiate objek di dalam objek Unity”

Pertanyaan yang mirip dengan “Instantiate objek di dalam objek Unity”

Lebih banyak jawaban terkait untuk “Instantiate objek di dalam objek Unity” di C#

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya