Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

ProceduralLoadingBehavior

enumeration

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

Cancelar

Cambiar al Manual

Descripción

ProceduralMaterial loading behavior.

Variables

DoNothingDo not generate the textures. RebuildTextures() or RebuildTexturesImmediately() must be called to generate the textures.
GenerateGenerate the textures when loading to favor application's size (default on supported platform).
BakeAndKeepBake the textures to speed up loading and keep the ProceduralMaterial data so that it can still be tweaked and regenerated later on.
BakeAndDiscardBake the textures to speed up loading and discard the ProceduralMaterial data (default on unsupported platform).
CacheGenerate the textures when loading and cache them to disk/flash to speed up subsequent game/application startups.
DoNothingAndCacheDo not generate the textures. RebuildTextures() or RebuildTexturesImmediately() must be called to generate the textures. After the textures have been generrated for the first time, they are cached to disk/flash to speed up subsequent game/application startups.