Version: 5.3 (switch to 5.4b)
言語English
  • C#
  • JS

スクリプト言語

好きな言語を選択してください。選択した言語でスクリプトコードが表示されます。

GUI.ModalWindow

フィードバック

ありがとうございます

この度はドキュメントの品質向上のためにご意見・ご要望をお寄せいただき、誠にありがとうございます。頂いた内容をドキュメントチームで確認し、必要に応じて修正を致します。

閉じる

送信に失敗しました

なんらかのエラーが発生したため送信が出来ませんでした。しばらく経ってから<a>もう一度送信</a>してください。ドキュメントの品質向上のために時間を割いて頂き誠にありがとうございます。

閉じる

キャンセル

マニュアルに切り替える
public static function ModalWindow(id: int, clientRect: Rect, func: GUI.WindowFunction, text: string): Rect;
public static Rect ModalWindow(int id, Rect clientRect, GUI.WindowFunction func, string text);
public static function ModalWindow(id: int, clientRect: Rect, func: GUI.WindowFunction, image: Texture): Rect;
public static Rect ModalWindow(int id, Rect clientRect, GUI.WindowFunction func, Texture image);
public static function ModalWindow(id: int, clientRect: Rect, func: GUI.WindowFunction, content: GUIContent): Rect;
public static Rect ModalWindow(int id, Rect clientRect, GUI.WindowFunction func, GUIContent content);
public static function ModalWindow(id: int, clientRect: Rect, func: GUI.WindowFunction, text: string, style: GUIStyle): Rect;
public static Rect ModalWindow(int id, Rect clientRect, GUI.WindowFunction func, string text, GUIStyle style);
public static function ModalWindow(id: int, clientRect: Rect, func: GUI.WindowFunction, image: Texture, style: GUIStyle): Rect;
public static Rect ModalWindow(int id, Rect clientRect, GUI.WindowFunction func, Texture image, GUIStyle style);
public static function ModalWindow(id: int, clientRect: Rect, func: GUI.WindowFunction, content: GUIContent, style: GUIStyle): Rect;
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 つのみ表示できます。