unity delete code example
Example 1: delete in unity
Destroy(GameObject obj);
Example 2: unity remove gameobject
// To remove a GameObject use the function 'Destroy()'
Destroy(gameObject);
Destroy(GameObject obj);
// To remove a GameObject use the function 'Destroy()'
Destroy(gameObject);