“Usuwanie Unity” Kod odpowiedzi

Jak usunąć komponent z obiektu w jedności

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

Usuwanie Unity

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

Odpowiedzi podobne do “Usuwanie Unity”

Pytania podobne do “Usuwanie Unity”

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

Przeglądaj inne języki kodu