Unreal Detailed Actor Replication Flow
The bulk of actor replication happens inside UNetDriver::ServerReplicateActors. This is where the server will gather all of the actors that it has determined to be relevant for each client, and send any properties that have changed since the last time each connected client was updated. There is a defined flow in how actors are updated, certain…