The ensure in APlayerState::OnRep_bIsInactive may be hit due to the player state being replicated before the game state. The check is necessary for making sure the game state is available, but the e ...
When NetworkRemapPath was refactored in 4.26 to support replay connections via the rep graph, the check for duplicate level id on the driver was lost in the new code path. This causes the demo driv ...
If received in the same update on a client, a replicated attach with attachment rule "SnapToTarget" will overwrite any replicated changes to the relative transform. Additionally, once a scene compon ...
Due to the hard-coded 1.5 second timeout for clients in UNetDriver:if ( OwningActor != NULL && Connection->State == USOCK_Open && ( Connection->Driver->GetElapsedTime() - Connection->LastReceiveTime ...
When a pending net game on a client receives a NMT_Upgrade control message, a network failure of type OutdatedClient is broadcast. Then during TickWorldTravel when the client tries to return to the ...
With the rework of IP address resolution in 4.25, this assert now occurs. When no packet handler is used, UPendingNetGame::InitNetDriver calls SendInitialJoin() immediately, before async address res ...
The networking system has a max frame rate of 120hz by default. Inside UNetConnection::Tick it computes an estimated bandwidth by using that max frame rate, the engine's max frame rate, and the actu ...
The network profiler C# exectuable that shipped in 4.25 is not fully useable on either my development machine or my home machine, because part of the UI is cut off below the window no matter how I r ...
Running with the -networkprofiler command line argument can crash the server on the first engine tick in FNetworkProfiler::TrackFrameBegin because the file writer archive hasn't been created yet. ...