GUI.DrawTextureWithTexCoords

Switch to Manual
public static void DrawTextureWithTexCoords (Rect position, Texture image, Rect texCoords);
public static void DrawTextureWithTexCoords (Rect position, Texture image, Rect texCoords, bool alphaBlend);

Parameters

position@param position Прямоугольник, внутри которого будет нарисована текстура.
image@param image Отображаемая Texture.
texCoords@param scaleMode Как следует масштабировать изображение в случае, если соотношение сторон изображения не совпадает с соотношением сторон прямоугольника (в котором будет рендерится изображение).
alphaBlend@param alphaBlend Следует ли применять альфа-смешивание изображения на экране (по умолчанию). Если значение равно false, то изображение будет нарисовано на экране.

Description

Draw a texture within a rectangle with the given texture coordinates.

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

See Also: GUI.color, GUI.contentColor.