Hi everyone. Ok so what I have is two spawnpoints (empty gameObjects) in a sceen. What I want to do is to change the spawn point when a player joins the game. Right now all the ever happens is that both players spawn at the same point. What is a good way of changing that so say 14 players can join a game and spawn at different points based on when the joined.
I was think like an array but I have not the foggiest idea on how to implement that, i.e. know how many players have joined the game.
this is how im spawning the player now
Network.Instantiate(playerPrefab, sp1.position, Quaternion.identity, 0);
i need to change the sp1.position for each player.
Thanks for any help with this.