I love the smell of UnrealEd crashing in the morning. – tarquin

Legacy:Replication/Message Types

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search

There are three types of message the engine might send over the network in order to support replication:

Actor Replication[edit]

Whenever the server decides that an actor has become relevant to a particular client, the server instructs the client to create an actor of that class and initialize it either with its client-side default properties (in the case of a newly-created actor) or with the values currently held by the server.

Variable Replication[edit]

Whenever a variable changes, if the condition in the replication block is met, and subject to the bNetUpdateFrequency of the actor, the server queues a network message that instructs the client to change a variable to the new value. Clients can also replicate some variables to the server, in the case of inputs, etc. Variables waiting to be replicated enter a queue and are replicated when bandwidth is available, depending on the actor's bNetPriority.

Function Replication[edit]

This is simply a remote function call. The engine transmits a request for the remote end to call a function. This can also be used to call a function on the server based on the client's input. See Replicated Function.

Related Topics[edit]

Replication