Version: 2017.1

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 テクスチャを描画するスクリーン上の Rect
image 表示する Texture
texCoords 描画されるものでアスペクト比が合わないときに画像をどのようにスケーリングするか
alphaBlend 画像を描画するときアルファブレンディングを適用するかどうか(デフォルトは true )。false の場合、画像がそのまま表示されます

説明

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.