Im replicating my crowd via a single actor-manager that stores all the data about my entities. The more entities I have, the rarer this replication happens for some reason (I’m using OnRep event to check the delta time between updates, with 100 entities it’s around 0.03s, with 1500 entities it’s 0.5s)
The total amount of data that’s being replicated in a single go in worse case scenario is 80k bits (10kb).
The array I use only replicates dirty indices, and stores dirty indices as bitflags, so it’s insanely optimized.
What might be the issue? I’ve tried quite literally everything I could, disabling bandwidth throttling doesn’t help. Have anyone faced such issue? Any solutions?