I was wondering if anyone knew the best way to handle multiple projectiles in a multiplayer game.
Currently I network instantiate projectiles which have their own photon view attached to them. This works however I’m worried that when multiple players start spawning multiple projectiles then there will be too many updates being sent out which will heavily impact network traffic.
Should I just instantiate the projectiles, fire them in the correct direction and then let each client work out where they should be? This would make it smoother but I’m worried there could be synchronization issues if I do this.
Another Idea I had was to send the position updates every half a second or so just to confirm the projectile is on the right track.
Looking for any helpful advice on this, thanks