返回介绍

MasterServer.ClearHostList 清除主机列表

发布于 2019-12-18 15:37:57 字数 2063 浏览 1038 评论 0 收藏 0

JavaScript => public static function ClearHostList(): void;
C# => public static void ClearHostList();

Description 描述

Clear the host list which was received by MasterServer.PollHostList.

清除被MasterServer.PollHostList接收的主机列表。

Useful if you want to update the list and want to make sure you don't use the older data.

如果你想更新该列表这是有用的并且确保你没有使用旧的数据。

JavaScript:

function Awake() {
		// Make sure list is empty and request a new list
		MasterServer.ClearHostList();
		MasterServer.RequestHostList("MyUniqueGameType");
	}
 
	function Update() {
		// If any hosts were received, display game name, the clear host list again
		if (MasterServer.PollHostList().Length != 0) {
			var hostData : HostData[] = MasterServer.PollHostList();
			for (var i : int = 0; i < hostData.Length; i++)
				Debug.Log("Game name: " + hostData[i].gameName);
			MasterServer.ClearHostList();
		}
	}

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    void Awake() {
        MasterServer.ClearHostList();
        MasterServer.RequestHostList("MyUniqueGameType");
    }
    void Update() {
        if (MasterServer.PollHostList().Length != 0) {
            HostData[] hostData = MasterServer.PollHostList();
            int i = 0;
            while (i < hostData.Length) {
                Debug.Log("Game name: " + hostData[i].gameName);
                i++;
            }
            MasterServer.ClearHostList();
        }
    }
}

masterserver

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文