返回介绍

Network.minimumAllocatableViewIDs 可分配最小ViewID数

发布于 2019-12-18 15:38:07 字数 1739 浏览 1026 评论 0 收藏 0

JavaScript => public static var minimumAllocatableViewIDs: int;
C# => public static int minimumAllocatableViewIDs;

Description 描述

Get or set the minimum number of ViewID numbers in the ViewID pool given to clients by the server.

在ViewID池中获取或设置由服务器分配给客户端ViewID的最小数。

The ViewID pools are given to each player as he connects and are refreshed with new numbers if the player runs out. The server and clients should be in sync regarding this value. Setting this higher only on the server has the effect that he sends more view ID numbers to clients, than they really want. Setting this higher only on clients means they request more view IDs more often, for example twice in a row, as the pools received from the server don't contain enough numbers. The default value is 100.

当玩家使用新的数字连接并被刷新时,ViewID池被分配给每个玩家。服务器和客户端应该同步这个值。在服务器上设置的更高,将会发送比它们真正需要的更多视ID数到客户端。在客户端上设置更高,意味着它们需要更多视ID。例如当池需要的ID数,服务器中并不包含足够的数量,则会在一行中使用两次。默认值为100。

If a game instantiates a lot of new objects over the network on each client, like more than 100 network intantiations per minute, then this value should be set higher.

如果一个游戏通过网络实例化大量新的物体,例如每秒超过100个的网络实例,那么这个值需要被设置的更高。

JavaScript:

	function Awake () {
		// Use a bigger view ID pool to allocate from
		Network.minimumAllocatableViewIDs = 500;
	}

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    void Awake() {
        Network.minimumAllocatableViewIDs = 500;
    }
}

network

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

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

发布评论

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