Instead of having an empty transform that we drag and drop the player on, is there a performance drop if we do
GameObject player;
player = GameObject.FindGameObjectWithTag(“Player”);
transform.position = player.transform.position;
or any reason why we aren’t doing it this way?