I am testing out unity networking for a game i am working on. I can spawn object on all clients, but i cant move the spawn point with a network start position object. Unity documentation tells me that the network manager looks for network start position scripts in the scene and spawns them randomly or with round robin on these.
Scene overview: https://i.imgur.com/pVIMpEa.png
Network Manager: (https://i.imgur.com/DKwCe17.png)
Network Start Position: (https://i.imgur.com/PTdFe1q.png)
I got it to work. My problem was that the network manager spawned a connection object, the object then instantiated the player. I just added this.transform to the Instantiate function.
Instantiate(PlayerUnitPrefab, this.transform);