Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

NetworkMatch.CreateMatch

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public function CreateMatch(matchName: string, matchSize: uint, matchAdvertise: bool, matchPassword: string, callback: ResponseDelegate<CreateMatchResponse>): Coroutine;
public Coroutine CreateMatch(string matchName, uint matchSize, bool matchAdvertise, string matchPassword, ResponseDelegate<CreateMatchResponse> callback);
public function CreateMatch(req: Networking.Match.CreateMatchRequest, callback: ResponseDelegate<CreateMatchResponse>): Coroutine;
public Coroutine CreateMatch(Networking.Match.CreateMatchRequest req, ResponseDelegate<CreateMatchResponse> callback);

Parámetros

req A CreateMatchRequest describing the match to create.
callback A callback delegate that takes a CreateMatchResponse that indicates the return of the request after coroutine processing.
matchName Name of match to create.
matchSize Maximum number of users in the match.
matchAdvertise Flag to advertise this match in searches.
matchPassword Password required to enter the match.

Valor de retorno

Coroutine A coroutine for managing the async operation. if using the callback, this can be ignored.

Descripción

A match accessor to create a new match hosted on this client.

This is asynchronous, the callback function will be invoked when the operation completes.