unity multiplayer - sync transform vs sync setdestination - navmesh agent

1.5k Views Asked by At

I'm new to scripting and I've been writing a dedicated UDP server for a 1V1 game Mova style game, using Navmesh agent. Should I constantly update player transforms or sync only when a player clicks to move, and setDestination to that position on the other clients? Also, with regards to hacking, do I have to get everything double checked with the server? Thanks.

1

There are 1 best solutions below

4
On

You have several ways to do this, I'll point out two of these with pros and cons.

Player Sends the click to move location to server.

1) The server then sends this location to ALL clients (including the originator) and then clients calculate the path and starts to interpolate movement.

pros: low bandwidth, fast execution and low complexity in implementation.

cons: Client will be easy hackable.

2) The server calculates the path the player will need to follow (pathfinding) and send the path nodes to the clients.

pros: unhackable, server will have the final word in every player action

cons: Server needs physics or pathfinding for this to work which is really lot of work. in case you implement physics you will be able to interpolate movement on server and send positions to clients in regular times to simulate movement.

Useful technologies to help you implement the second option are BulletSharp, SharpNav both of these will need you to load the geometry (Terrain) to the server side) and Snapshot Compression for optimizing Client- server Networked Physics.

Best of luck and you may ask for any clarification or help.