Select your preferred scripting language. All code snippets will be displayed in this language.
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
Closeobj | 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. |
bool True if the object was spawned.
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: var = 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() { var go = (GameObject)Instantiate(otherPrefab, transform.position + new Vector3(0,1,0), Quaternion.identity); NetworkServer.SpawnWithClientAuthority(go, connectionToClient); } }