Version: 2020.1
언어: 한국어
public void Register (Guid messageId, UnityAction<MessageEventArgs> callback);

파라미터

messageId The message ID that should cause the Action callback to be executed when received.
callback 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.

설명

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().