“Komponen Persatuan” Kode Jawaban

cara menghapus komponen dari suatu objek di Unity

Destroy(GetComponent<TheComponentYouWantToDestroy>());
Pixel Freak

Komponen Persatuan

//Use Destroy() for removing components
// Kills the game object
Destroy (gameObject);

// Removes this script instance from the game object
Destroy (this);

// Removes the rigidbody from the game object
Destroy (GetComponent<Rigidbody>());

// Kills the game object in 5 seconds after loading the object
Destroy (gameObject, 5);
Xombiehacker

Jawaban yang mirip dengan “Komponen Persatuan”

Pertanyaan yang mirip dengan “Komponen Persatuan”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya