“Unity RemoveComponent” Réponses codées

Comment supprimer un composant d'un objet dans l'unité

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

Réponses similaires à “Unity RemoveComponent”

Questions similaires à “Unity RemoveComponent”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code