Terrain.treeMaximumFullLODCount
Sugiere un cambio
¡Éxito!
Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.
Cerrar
No se puedo enviar
Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.
Cerrar
Cambiar al Manual
public
var treeMaximumFullLODCount: int;
public int treeMaximumFullLODCount;
Descripción
Maximum number of trees rendered at full LOD.
This is an easy setting to prevent too many trees being rendered at too high resolution in dense forests.
Since there will be no fade if treeMaximumFullLODCount
is exceeded you should tweak the treeBillboardDistance
to
not include unnecessary trees that are not being seen but, still rendered.
function Start () {
Terrain.activeTerrain.treeMaximumFullLODCount = 200;
}
using UnityEngine;
using System.Collections;
public class ExampleClass : MonoBehaviour {
void Start() {
Terrain.activeTerrain.treeMaximumFullLODCount = 200;
}
}