Server only network emulation settings applied to client on travel

UE - Networking - Sep 4, 2024

It looks like the "Server Only" emulation settings are being applied to the client after a travel. When doing a server travel with the TRAVEL_Relative travel type, the NextURL created in AGameModeBa ...

Improve extra state debug box when net debug drawing

UE - Networking - Aug 28, 2024

With net debug drawing enabled, an extra debug box is drawn around some actors to indicate if the actor is always relevant or if it is distance culled. However, the strange size of this box makes ne ...

Reliable subobject creation bunch may overwrite previously received property on the actor

UE - Networking - Jun 21, 2024

This seems to occur because of how reliability and the retransmission of dropped data is handled in the engine. If a reliable bunch is dropped, the entire bunch will be resent, but any unreliable bu ...

Join in progress clients won't receive that a net startup actor is hidden

UE - Networking - Jun 21, 2024

This seems to be because IsNetRelevantFor checks if the actor is hidden, resulting in a hidden actor not being considered relevant to clients. However, if it is a net startup actor, this will result ...

PostReplicatedChange called for fast array item even when no values change

UE - Networking - Jun 7, 2024

Unless a property is set to REPNOTIFY_Always, we compare the property's received value to the current value on the client before calling the OnRep function. However, when determining if a fast array ...

Actors in always loaded sublevels are not immediately recorded into replays

UE - Networking - May 24, 2024

In FReplayHelper::ReplicateActor, we check Connection->ClientHasInitializedLevel(Actor->GetLevel()) to see if the actor should create a channel or not. However, the DemoNetConnection does not have a ...

LogAssetRegistry Error produces a path error when referring to assets on a junction/hard link/soft link

UE - Foundation - Core - Cooker - May 23, 2024

IAssetRegistry::GetChecked().ScanPathsSynchronous() now eventually calls FPathExistence::LoadExistenceData and logs the errorFPathExistence failed to gather correct capitalization from disk for <p ...

Iris - high latency causes initial hitch for newly spawned actor's movement

UE - Networking - Iris - May 20, 2024

This may possibly be due to FReplicationWriter::CanSendObject waiting for CreateConfirmation. ...