“Unidad Removecomponente” Código de respuesta

Cómo eliminar un componente de un objeto en Unity

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

Unidad Removecomponente

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

Respuestas similares a “Unidad Removecomponente”

Preguntas similares a “Unidad Removecomponente”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código