Version: 5.4

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 の場合、画像がそのまま表示されます

説明

与えられたテクスチャ座標の Rect でテクスチャを描画します。この関数は Rect によるクリッピングやタイリングのために使用します

関連項目: GUI.color, GUI.contentColor.