You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the Join a matchmaking ticket session of the document,
there is such code: PlayFabMultiplayer.OnMatchmakingTicketCompleted += PlayFabMultiplayer_OnMatchmakingTicketStatusChanged;
And it is explained as
One OnMatchmakingTicketStatusChanged will be triggered with the Status being WaitingForMatch.
The code snippet should be corrected as below: PlayFabMultiplayer.OnMatchmakingTicketStatusChanged += PlayFabMultiplayer_OnMatchmakingTicketStatusChanged;
because the PlayFabMultiplayer.OnMatchmakingTicketCompleted event is triggered when the ticket is cancelled or matched instead of status changed, right?
In the 2nd part of the codesnippet, there is such code: Debub.Log(ticket.Status)
which should be changed to: Debug.Log(ticket.Status);
just a bit typo, and please don't forget the semicolon at the end.
The text was updated successfully, but these errors were encountered:
In the Join a matchmaking ticket session of the document,
there is such code:
PlayFabMultiplayer.OnMatchmakingTicketCompleted += PlayFabMultiplayer_OnMatchmakingTicketStatusChanged;
And it is explained as
The code snippet should be corrected as below:
PlayFabMultiplayer.OnMatchmakingTicketStatusChanged += PlayFabMultiplayer_OnMatchmakingTicketStatusChanged;
because the PlayFabMultiplayer.OnMatchmakingTicketCompleted event is triggered when the ticket is cancelled or matched instead of status changed, right?
In the 2nd part of the codesnippet, there is such code:
Debub.Log(ticket.Status)
which should be changed to:
Debug.Log(ticket.Status);
just a bit typo, and please don't forget the semicolon at the end.
The text was updated successfully, but these errors were encountered: