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.

UnityWebRequest.GetTexture

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 static function GetTexture(uri: string): Experimental.Networking.UnityWebRequest;
public static Experimental.Networking.UnityWebRequest GetTexture(string uri);
public static function GetTexture(uri: string, nonReadable: bool): Experimental.Networking.UnityWebRequest;
public static Experimental.Networking.UnityWebRequest GetTexture(string uri, bool nonReadable);

Parámetros

uri The URI of the image to download.
nonReadable If true, the texture's raw data will not be accessible to script. This can conserve memory. Default: false.

Valor de retorno

UnityWebRequest A UnityWebRequest properly configured to download an image and convert it to a Texture.

Descripción

Create a UnityWebRequest intended to download an image via HTTP GET and create a Texture based on the retrieved data.

This method creates a UnityWebRequest and sets the target URL to the string uri argument. This method sets no other flags or custom headers.

This method attaches a DownloadHandlerTexture object to the UnityWebRequest. DownloadHandlerTexture is a specialized DownloadHandler which is optimized for storing images which are to be used as textures in the Unity Engine. Using this class significantly reduces memory reallocation compared to downloading raw bytes and creating a texture manually in script. In addition, texture conversion will be performed on a worker thread.

This method attaches no UploadHandler to the UnityWebRequest.

no example available in JavaScript
using UnityEngine;
using UnityEngine.Experimental.Networking;
using System.Collections;
 
class MyBehaviour: public MonoBehaviour {
    void Start() {
        StartCoroutine(GetTexture());
    }
 
    IEnumerator GetTexture() {
        using(UnityWebRequest www = UnityWebRequest.GetTexture("http://www.my-server.com/image.png")) {
            yield return www.Send();
     
            if(www.isError) {
                Debug.Log(www.error);
            }
            else {
                Texture myTexture = ((DownloadHandlerTexture)www.downloadHandler).texture;
            }
        }
    }
}