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

スクリプト言語

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

EditorWindow.GetWindow

フィードバック

ありがとうございます

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

閉じる

送信に失敗しました

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

閉じる

キャンセル

マニュアルに切り替える
public static function GetWindow(t: Type, utility: bool = false, title: string = null, focus: bool = true): EditorWindow;
public static EditorWindow GetWindow(Type t, bool utility = false, string title = null, bool focus = true);
public static function GetWindow(t: Type, utility: bool = false, title: string = null, focus: bool = true): EditorWindow;
public static EditorWindow GetWindow(Type t, bool utility = false, string title = null, bool focus = true);
public static function GetWindow(t: Type, utility: bool = false, title: string = null, focus: bool = true): EditorWindow;
public static EditorWindow GetWindow(Type t, bool utility = false, string title = null, bool focus = true);
public static function GetWindow(t: Type, utility: bool = false, title: string = null, focus: bool = true): EditorWindow;
public static EditorWindow GetWindow(Type t, bool utility = false, string title = null, bool focus = true);

パラメーター

t ウィンドウのタイプ。EditorWindow から派生したタイプでなくてはいけません
utility フローティングのユーティリティウィンドウを作成するには、これを True に設定し、通常のウィンドウを作成する場合は False を設定します。
title GetWindow が新しいウィンドウを作成する場合、このタイトルを取得します。この値が null の場合、クラス名をタイトルとして使用します。
focus それがすでに存在する場合、ウィンドウフォーカスを与えるかどうか ( GetWindow が新しいウィンドウを作成する場合、それは常にフォーカスを取得します)。

説明

現在画面上にある t タイプの最初に見つけた EditorWindow を返します

存在しない場合、新しいウィンドウを作成して表示し、そのインスタンスを返します。


何もないシンプルな他のウィンドウにドッキングできないウィンドウ

// Simple script that creates a new non-dockable window
	
import UnityEditor;
	
class GetWindowEx extends EditorWindow {	
	@MenuItem("Example/Display simple Window")
	static function Initialize() {
		var window : GetWindowEx = EditorWindow.GetWindow(GetWindowEx, true, "My Empty Window");
	}
}
using UnityEngine;
using UnityEditor;

// Simple script that creates a new non-dockable window public class EditorWindowTest : EditorWindow {

[MenuItem("Example/Display simple Window")] static void Initialize() { EditorWindowTest window = (EditorWindowTest)EditorWindow.GetWindow(typeof(EditorWindowTest), true, "My Empty Window"); } }

public static function GetWindow(): T;
public static T GetWindow();
public static function GetWindow(utility: bool): T;
public static T GetWindow(bool utility);
public static function GetWindow(utility: bool, title: string): T;
public static T GetWindow(bool utility, string title);
public static function GetWindow(title: string): T;
public static T GetWindow(string title);
public static function GetWindow(title: string, focus: bool): T;
public static T GetWindow(string title, bool focus);
public static function GetWindow(utility: bool, title: string, focus: bool): T;
public static T GetWindow(bool utility, string title, bool focus);

パラメーター

T ウィンドウのタイプ。EditorWindow から派生したタイプでなくてはいけません
utility フローティングのユーティリティウィンドウを作成するには、これを True に設定し、通常のウィンドウを作成する場合は False を設定します。
title GetWindow が新しいウィンドウを作成する場合、このタイトルを取得します。この値が null の場合、クラス名をタイトルとして使用します。
focus それがすでに存在する場合、ウィンドウフォーカスを与えるかどうか ( GetWindow が新しいウィンドウを作成する場合、それは常にフォーカスを取得します)。

説明

スクリーンの現在の T 型の最初の EditorWindow を返します

存在しない場合、新しいウィンドウを作成して表示し、そのインスタンスを返します。


public static function GetWindow(params desiredDockNextTo: Type[]): T;
public static T GetWindow(params Type[] desiredDockNextTo);
public static function GetWindow(title: string, params desiredDockNextTo: Type[]): T;
public static T GetWindow(string title, params Type[] desiredDockNextTo);
public static function GetWindow(title: string, focus: bool, params desiredDockNextTo: Type[]): T;
public static T GetWindow(string title, bool focus, params Type[] desiredDockNextTo);

パラメーター

T ウィンドウのタイプ。EditorWindow から派生したタイプでなくてはいけません
title GetWindow が新しいウィンドウを作成する場合、このタイトルを取得します。この値が null の場合、クラス名をタイトルとして使用します。
desiredDockNextTo そのウィンドウの上にドッキングしようとする EditorWindow の型の配列
focus それがすでに存在する場合、ウィンドウフォーカスを与えるかどうか ( GetWindow が新しいウィンドウを作成する場合、それは常にフォーカスを取得します)。

説明

スクリーンの現在の T 型の最初の EditorWindow を返します

存在しない場合、新しいウィンドウを作成して表示し、そのインスタンスを返します。 存在しない場合、新しいウィンドウを作成して表示し、そのインスタンスを返します