unity remove component from gameobject code example
Example 1: how to remove a component from an object in unity
Destroy(GetComponent<TheComponentYouWantToDestroy>());
Example 2: unity remove gameobject
// To remove a GameObject use the function 'Destroy()'
Destroy(gameObject);
Example 3: unity remove component in script
Destroy (gameObject);
Example 4: unity remove component
//Use Destroy() for removing components