Version: 2018.1
public static Rect ModalWindow (int id, Rect clientRect, GUI.WindowFunction func, string text);
public static Rect ModalWindow (int id, Rect clientRect, GUI.WindowFunction func, Texture image);
public static Rect ModalWindow (int id, Rect clientRect, GUI.WindowFunction func, GUIContent content);
public static Rect ModalWindow (int id, Rect clientRect, GUI.WindowFunction func, string text, GUIStyle style);
public static Rect ModalWindow (int id, Rect clientRect, GUI.WindowFunction func, Texture image, GUIStyle style);
public static Rect ModalWindow (int id, Rect clientRect, GUI.WindowFunction func, GUIContent content, GUIStyle style);

パラメーター

idユニークな ID 番号
clientRectウィンドウのサイズと位置
funcウィンドウ内のコンテンツを描画する即時モードの GUI コードが含まれているメソッド
textウィンドウのタイトルバー領域に表示されるテキスト
imageウィンドウのタイトルバー領域に表示される画像
contentウィンドウのタイトルバーに表示される GUIContent
styleウィンドウに適用するスタイル

説明

モーダルウィンドウを表示します

GUI.Window と同じに見えますが、このウィンドウは常に他の GUI よりも最前面に表示されます。これによりすべての GUI の入力やイベントが受け取れることが保証されます。モーダルウィンドウが表示されている間は他のコントロールは入力処理を行いません。モーダルウィンドウは 1 度に 1 つのみ表示できます。