Register(Guid, UnityAction<MessageEventArgs>)
Registers a callback on a certain message ID.
Read time 1 minuteLast updated 13 days ago
Definition
- Type: Method
- Namespace: UnityEditor.Networking.PlayerConnection
- Assembly: UnityEditor.CoreModule
public void Register(Guid messageId, UnityAction<MessageEventArgs> callback)
Parameters
The message ID that invokes the callback when received by the Editor.
Action that is executed when a message with ID is received by the Editor. The callback includes the data that is sent from the Player, and the Player's ID. The Player ID is used to distinguish between multiple Players connected to the same Editor.
messageIdRemarks
The message ID must be the same as that used in the PlayerConnection.Send().
There can be multiple registered callbacks for one message ID, and these can be deregistered individually with EditorConnection.Unregister.