Version: 2022.3
言語: 日本語
public void Register (Guid messageId, UnityAction<MessageEventArgs> callback);

パラメーター

messageId The message ID that invokes the callback when received by the Editor.
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's ID. The Player ID is used to distinguish between multiple Players connected to the same Editor.

説明

Registers a callback on a certain message ID.

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.