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.

ClientScene.AddPlayer

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 static function AddPlayer(readyConn: Networking.NetworkConnection, playerControllerId: short, extraMessage: Networking.MessageBase): bool;
public static bool AddPlayer(Networking.NetworkConnection readyConn, short playerControllerId, Networking.MessageBase extraMessage);
public static function AddPlayer(readyConn: Networking.NetworkConnection, playerControllerId: short): bool;
public static bool AddPlayer(Networking.NetworkConnection readyConn, short playerControllerId);
public static function AddPlayer(playerControllerId: short): bool;
public static bool AddPlayer(short playerControllerId);

Parámetros

readyConn The connection to become ready for this client.
playerControllerId The local player ID number.
extraMessage An extra message object that can be passed to the server for this player.

Valor de retorno

bool True if player was added.

Descripción

This adds a player object for this client. This causes an AddPlayer message to be sent to the server, and NetworkManager.OnServerAddPlayer will be called. If an extra message was passed to AddPlayer, then OnServerAddPlayer will be called with a NetworkReader that contains the contents of the message.

The playerControllerId is the local player ID for the player, for example which controller a player is using. This is not the global player number.