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.

SparseTexture

class in UnityEngine

/

Hereda de:Texture

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

Class for handling Sparse Textures.

Sparse Textures son texturas dónde no toda la información de texturas puede ser presentada en la memoria de una. Ellas también son comúnmente llamadas "tiled textures" o "mega textures".

Imagínese una textura 16384x16384 en 32 bits por píxel - tomaría 1GB de memoria. La textura es rota en "tiles" rectangulares, y cada baldosa(tile) puede estar presente en la memoria o no. Usted puede cargar y descargar estas baldosas(tiles) como sea necesario basado en la distancia desde la cámara, sectores del mundo que el jugador tiene que ver, etc.

De otra manera, las sparse texturas se comportan como cualquier otra textura en sombreadores - ellas pueden tener mimaps, pueden utilizar todos los modos de filtración de textura, etc. Si a usted le toca leer de una baldosa que no está presente, usted puede obtener un resultado indefinido (en la mayoría de GPUs el resultado es un color negro, pero eso no es garantizado).

Note that not all hardware and platforms support sparse textures, so you should check SystemInfo.supportsSparseTextures before using them. For example, on DirectX systems they require DX11.2 (Windows 8.1) and a fairly recent GPU; and on OpenGL they require ARB_sparse_texture extension support.

After creating the sparse texture, query the tile size with tileWidth & tileHeight. Tile sizes are platform and GPU dependent.

Use UpdateTile or UpdateTileRaw to make a tile resident in memory and update its color data. Use UnloadTile to unload a tile.

See Also: Sparse Textures documentation page.

Variables

isCreatedIs the sparse texture actually created? (Read Only)
tileHeightGet sparse texture tile height (Read Only).
tileWidthGet sparse texture tile width (Read Only).

Constructores

SparseTextureCreate a sparse texture.

Funciones Públicas

UnloadTileUnload sparse texture tile.
UpdateTileUpdate sparse texture tile with color values.
UpdateTileRawUpdate sparse texture tile with raw pixel values.

Miembros heredados

Variables

hideFlagsShould the object be hidden, saved with the scene or modifiable by the user?
nameEl nombre del objeto.
anisoLevelNivel de filtrado anisotrópico de la textura.
filterModeModo de filtrado de la textura.
heightAltura de la textura en pixels. (Read Only)
mipMapBiasMip map bias of the texture.
widthAnchura de la textura en píxeles. (Read Only)
wrapModeWrap mode (Repeat or Clamp) of the texture.

Funciones Públicas

GetInstanceIDReturns the instance id of the object.
ToStringDevuelve el nombre del objeto.
GetNativeTexturePtrRetrieve native ('hardware') pointer to a texture.

Funciones Estáticas

DestroyElimina un gameobject, componente o asset.
DestroyImmediateDestroys the object obj immediately. You are strongly recommended to use Destroy instead.
DontDestroyOnLoadMakes the object target not be destroyed automatically when loading a new scene.
FindObjectOfTypeDevuelve el primer objeto activo cargado de tipo type.
FindObjectsOfTypeDevuelve una lista de todos los objetos activos cargados de tipo type.
InstantiateDevuelve el nombre del objeto.
SetGlobalAnisotropicFilteringLimitsSets Anisotropic limits.

Operadores

bool¿Existe el objeto?
operator !=Compares if two objects refer to a different object.
operator ==Compares two object references to see if they refer to the same object.