I use NetworkStatsMonitor sending an array via RPC and noticed that if I change the RpcDelivery between reliable and unreliable, the latter seems to slightly increase the upstream traffic on the host side.
Is there a reason for this, or am I just reading something into these stats?
The stats do fluctuate between 40-45 Kb/s rather quickly so that makes it hard to assess. However my observation is as if reliable traffic is more in the 40-42 range while unreliable seems to show 42-43 Kb/s more often.
I noticed the same thing with NetworkTransform where “Use Unreliable Deltas” did slightly increase the upstream traffic for 100 objects.
FYI I’m currently looking into ways to reduce net traffic for 100 constantly moving enemies, hence these tests. NetworkTransform on each shows over 220 KB/s while sending an array of 100 HalfVector3 via RPC at the Network tick rate shows less than 45 KB/s in upstream. And then I can further manually send at a lower rate since my enemies don’t need more than 5 or 10 updates per second.