Version: 2017.3 (switch to 2017.4)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

NetworkManager.OnServerConnect

Suggest a change

Success!

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.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public method OnServerConnect(conn: Networking.NetworkConnection): void;
public void OnServerConnect(Networking.NetworkConnection conn);

Parameters

conn Connection from client.

Description

Called on the server when a new client connects.

Unity calls this on the Server when a Client connects to the Server. Use an override to tell the NetworkManager what to do when a client connects to the server.

no example available in JavaScript
//Attach this script to a GameObject and add a NetworkHUD component to the GameObject.
//Create a Text GameObject (Create>UI>Text) and attach it in the Text field in the Inspector.
//This script changes Text on the screen when a client connects to the server

using UnityEngine; using UnityEngine.Networking; using UnityEngine.UI;

public class OnServerConnectExample : NetworkManager { //Assign a Text component in the GameObject's Inspector public Text m_Text;

//Detect when a client connects to the Server public override void OnServerConnect(NetworkConnection connection) { //Change the text to show the connection and the client's ID m_Text.text = "Client " + connection.connectionId + " Connected!"; } }

Did you find this page useful? Please give it a rating: