WWW.threadPriority 线程优先级

var threadPriority : ThreadPriority

Description描述

Priority of AssetBundle decompression thread.

AssetBundle解压缩线程的优先级。

You can control decompression speed vs. impact on frame rate tradeoff when downloading Asset Bundles in the background. When using lower priority, decompression will take longer, but will not have such a big impact on frame rates. Default value is ThreadPriority.Normal.

当在背景下载资源包时,你可以控制解压缩速度和影响帧速率两者进行权衡。当使用较低的优先级时,解压缩将需要更长的时间,但不会对帧速率上有很大的影响。默认值是ThreadPriority.Normal

function Start () {
	var www = new WWW ("http://myserver/myBundle.unity3d");
	www.threadPriority = ThreadPriority.Low;
	yield www;
	// Get the designated main asset and instantiate it.
	//获取指定的主要资源并创建实例化。
	Instantiate(www.assetBundle.mainAsset);
}
最后修改:2011年4月25日 Monday 9:23

本脚本参考基于Unity 3.4.1f5

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