Version: 2018.2

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.