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.

NetworkServer.SpawnWithClientAuthority

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 SpawnWithClientAuthority(obj: GameObject, player: GameObject): bool;
public static bool SpawnWithClientAuthority(GameObject obj, GameObject player);
public static function SpawnWithClientAuthority(obj: GameObject, conn: Networking.NetworkConnection): bool;
public static bool SpawnWithClientAuthority(GameObject obj, Networking.NetworkConnection conn);
public static function SpawnWithClientAuthority(obj: GameObject, assetId: Networking.NetworkHash128, conn: Networking.NetworkConnection): bool;
public static bool SpawnWithClientAuthority(GameObject obj, Networking.NetworkHash128 assetId, Networking.NetworkConnection conn);

Parámetros

obj The object to spawn.
player The player object to set Client Authority to.
assetId The assetId of the object to spawn. Used for custom spawn handlers.
conn The connection to set Client Authority to.

Valor de retorno

bool True if the object was spawned.

Descripción

This spawns an object like NetworkServer.Spawn() but also assigns Client Authority to the specified client.

This is the same as calling AssignClientAuthority on the spawned object.

#pragma strict
class TestBehaviour extends NetworkBehaviour {
	public var otherPrefab: GameObject;
	@Command
	public function CmdSpawn() {
		var go = GameObjectInstantiate(otherPrefab, transform.position + new Vector3(0, 1, 0), Quaternion.identity);
		NetworkServer.SpawnWithClientAuthority(go, connectionToClient);
	}
}
class TestBehaviour : NetworkBehaviour
{
	public GameObject otherPrefab;
	[Command]
	public void CmdSpawn()
	{
		GameObject go = (GameObject)Instantiate(otherPrefab, transform.position + new Vector3(0,1,0), Quaternion.identity);
		NetworkServer.SpawnWithClientAuthority(go, connectionToClient);
	}
}