Terrain.treeDistance 树木距离

var treeDistance : float

Description描述

The maximum distance at which trees are rendered

被渲染的树的最大距离。

The higher this is, the further the distance trees can be seen and the slower it will run.

这个值越高,更远距离的树木将会被看到并且运行的将更慢。

参见:Terrain.treeBillboardDistance

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void Start() {
		Terrain.activeTerrain.treeDistance = 2000;
	}
}
function Start () {
	Terrain.activeTerrain.treeDistance = 2000;
}
最后修改:2011年4月1日 Friday 17:17

本脚本参考基于Unity 3.4.1f5

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