Llamado en el cliente cuando usted se ha conectado con éxito a un servidor.
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void OnConnectedToServer() { Debug.Log("Connected to server"); // Send local player name to server ... } }