言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

GUI.ModalWindow(int,Rect,WindowFunction,GUIContent,GUIStyle,GUISkin)

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Parameters

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

Description

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

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