Version: 2017.3

GUI.DrawTextureWithTexCoords

切换到手册
public static void DrawTextureWithTexCoords (Rect position, Texture image, Rect texCoords);
public static void DrawTextureWithTexCoords (Rect position, Texture image, Rect texCoords, bool alphaBlend);

参数

position 要在其中绘制纹理的屏幕矩形。
image 要显示的 Texture
texCoords 当图像的宽高比不适合要绘制的宽高比时,如何缩放图像。
alphaBlend 是否将图像 Alpha 混合到显示屏上(默认值)。如果为 false,则将图片绘制到显示屏上。

描述

使用给定的纹理坐标在矩形内绘制纹理。

Use this function for clipping or tiling the image within the given rectangle.

See Also: GUI.color, GUI.contentColor.