MonoBehaviour.OnMasterServerEvent(MasterServerEvent)

Cambiar al Manual

Descripción

Llamado en clientes o servidores cuando se reporta eventos desde el MasterServer.

Como, por ejemplo, cuando una lista de anfitriones se ha recibido o el registro de anfitriones ha tenido éxito.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Start() { Network.InitializeServer(32, 25000); }

void OnServerInitialized() { MasterServer.RegisterHost("MyGameVer1.0.0_42", "My Game Instance", "This is a comment and place to store data"); }

void OnMasterServerEvent(MasterServerEvent msEvent) { if (msEvent == MasterServerEvent.RegistrationSucceeded) Debug.Log("Server registered"); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961