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.

GUI.DrawTextureWithTexCoords

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 DrawTextureWithTexCoords(position: Rect, image: Texture, texCoords: Rect): void;
public static void DrawTextureWithTexCoords(Rect position, Texture image, Rect texCoords);
public static function DrawTextureWithTexCoords(position: Rect, image: Texture, texCoords: Rect, alphaBlend: bool): void;
public static void DrawTextureWithTexCoords(Rect position, Texture image, Rect texCoords, bool alphaBlend);

Parámetros

position Rectangle on the screen to draw the texture within.
image Texture to display.
texCoords How to scale the image when the aspect ratio of it doesn't fit the aspect ratio to be drawn within.
alphaBlend Whether to alpha blend the image on to the display (the default). If false, the picture is drawn on to the display.

Descripción

Draw a texture within a rectangle with the given texture coordinates. Use this function for clipping or tiling the image within the given rectangle.