Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


Register(Guid, UnityAction<MessageEventArgs>)

Registers a listener for a specific message ID, with an Action to be executed whenever that message is received by the Editor. This ID must be the same as for messages sent from EditorConnection.Send().
Read time 1 minuteLast updated 10 days ago

Definition

public void Register(Guid messageId, UnityAction<MessageEventArgs> callback)

Parameters

messageId

The message ID that should cause the Action
callback
to be executed when received.

Action that is executed when a message with ID
messageId
is received by the Editor. The callback includes the data that is sent from the Player, and the Player ID. The Player ID is always 1, because only one Editor can be connected.