Answers for "remove all components unity"

C#
17

how t remove a component in unity

Destroy(GetComponent<TheComponentYouWantToDestroy>());
Posted by: Guest on July-28-2020
0

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);
Posted by: Guest on July-31-2021

C# Answers by Framework

Browse Popular Code Answers by Language