Network.sendRate 发送速率

static var sendRate : float

Description描述

The default send rate of network updates for all Network Views.

用于所有网络视图,网络更新的默认发送速率。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void Awake() {
		Network.sendRate = 25;
	}
}
function Awake () {
	// Increase default send rate
	//增加默认发送速率
	Network.sendRate = 25;
}
最后修改:2011年4月2日 Saturday 12:55

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。