“Unity removecomponent” Code-Antworten

So entfernen Sie eine Komponente aus einem Objekt in Einheit

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

Unity removecomponent

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

Ähnliche Antworten wie “Unity removecomponent”

Fragen ähnlich wie “Unity removecomponent”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen