I am creating a terrain system where the client spawns pieces as they become visible(have a large world). The terrain is somewhat editable by by players so I want to do some rpc calls to make it work. How do i have the terrain piece on the client connect to the server counterpart(alwase existing). I have a terrainmanager object that will be connected to server counterpart that could be used to initialize the terrain and setup the connection.(I could use the TerrainManager to do all the communicating with the server about changes but that would be overly complicated and not a good solution)
I need the terrain to spawn as quickly as possible and only on the one client so Network.Instantiate does’t seem like it would work.
tldr. I need to connect a new piece of terrain spawned on the client when it become visible to an existing piece on the server.