Is there a way to disable or to cut out this system additions? If so please tell me. It’s going on my nervs to rename all objects by scripts.
You can do this:
public GameObject prefab;
GameObject go = Instantiate(prefab);
go.name = prefab.name;
I am pretty sure that is how I did it in one of my scripts.