AActor::AddReplicatedSubObject will ensure in this case if the actor doesn't set bReplicateUsingRegisteredSubObjectList, but there is no equivalent check in AActor::AddActorComponentReplicatedSubObj ...
When the actor goes out of dormancy, it will replicate its push model property, even if it hasn't been marked as dirty. In this case, it seems the value of the property is not written to the shadow ...
Because the component's subobjects are replicated before the component, the content block for the subobject is received before the component has been created on the client. Since this subobject is c ...
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 ...
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 ...
This issue seems to stem from HasClientLoadedCurrentWorld returning true in AGameMode::RemovePlayerControllerFromPlayerCount. When removing a player controller, the GameMode checks if a seamless tra ...
For instances that are not a dedicated client or dedicated server (e.g. packaged games with TargetType "Game"), GIsClient will be true, but GIsServer will be false. This leads to objects that retur ...
When the replicated scene component's AttachChildren array is replicated, the package map attempts to serialize the non-replicated component, causing the warning that the object is not supported. ...
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 ...
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 ...