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.
CloseFor 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.
Closeconn | Connection from client. |
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!"; } }