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.

DownloadHandlerAssetBundle.DownloadHandlerAssetBundle

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
public DownloadHandlerAssetBundle(url: string, crc: uint)
public DownloadHandlerAssetBundle(string url, uint crc);

Parámetros

url The nominal (pre-redirect) URL at which the asset bundle is located.
crc A checksum to compare to the downloaded data for integrity checking, or zero to skip integrity checking.

Descripción

Standard constructor for non-cached asset bundles.

This constructor will bypass the caching system and simply download the AssetBundle from url.

If the crc argument is non-zero, then the crc argument will be compared to the checksum of the downloaded data. If the CRCs do not match, an error will be logged, the asset bundle will not be loaded, and assetBundle will return null.

If you do not wish to use CRC integrity checking, pass zero as the crc argument.


public DownloadHandlerAssetBundle(url: string, version: uint, crc: uint)
public DownloadHandlerAssetBundle(string url, uint version, uint crc);

Parámetros

url The nominal (pre-redirect) URL at which the asset bundle is located.
crc A checksum to compare to the downloaded data for integrity checking, or zero to skip integrity checking.
version Current version number of the asset bundle at url. Increment to redownload.

Descripción

Simple versioned constructor. Caches downloaded asset bundles.

When this constructor is used, the DownloadHandlerAssetBundle will first check to see if there is a cached AssetBundle from url.

If there is no cached asset bundle, or if the cached asset bundle's version matches the version argument, then the system will skip downloading the asset bundle and instead load it from the cache.

If there is a cached asset bundle, but the cached bundle's version does not match the version argument, then the system will re-download the asset bundle from url.

If the crc argument is non-zero, then the crc argument will be compared to the checksum of the downloaded data. If the CRCs do not match, an error will be logged, the asset bundle will not be loaded, and assetBundle will return null.

If you do not wish to use CRC integrity checking, pass zero as the crc argument.


public DownloadHandlerAssetBundle(url: string, hash: Hash128, crc: uint)
public DownloadHandlerAssetBundle(string url, Hash128 hash, uint crc);

Parámetros

url The nominal (pre-redirect) URL at which the asset bundle is located.
crc A checksum to compare to the downloaded data for integrity checking, or zero to skip integrity checking.
hash A hash object defining the version of the asset bundle.

Descripción

Versioned constructor. Caches downloaded asset bundles.

When this constructor is used, the DownloadHandlerAssetBundle will first check to see if there is a cached AssetBundle from url.

If there is no cached asset bundle, or if the cached asset bundle's hash matches the hash argument, then the system will skip downloading the asset bundle and instead load it from the cache.

If there is a cached asset bundle, but the cached bundle's hash does not match the hash argument, then the system will re-download the asset bundle from url.

If the crc argument is non-zero, then the crc argument will be compared to the checksum of the downloaded data. If the CRCs do not match, an error will be logged, the asset bundle will not be loaded, and assetBundle will return null.

If you do not wish to use CRC integrity checking, pass zero as the crc argument.