Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

EditorWindow.GetWindowWithRect

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public static function GetWindowWithRect(t: Type, rect: Rect, utility: bool = false, title: string = null): EditorWindow;
public static EditorWindow GetWindowWithRect(Type t, Rect rect, bool utility = false, string title = null);
public static function GetWindowWithRect(t: Type, rect: Rect, utility: bool = false, title: string = null): EditorWindow;
public static EditorWindow GetWindowWithRect(Type t, Rect rect, bool utility = false, string title = null);
public static function GetWindowWithRect(t: Type, rect: Rect, utility: bool = false, title: string = null): EditorWindow;
public static EditorWindow GetWindowWithRect(Type t, Rect rect, bool utility = false, string title = null);

Parámetros

t The type of the window. Must derive from EditorWindow.
rect The position on the screen where a newly created window will show.
utility Set this to true, to create a floating utility window, false to create a normal window.
title If GetWindow creates a new window, it will get this title. If this value is null, use the class name as title.

Descripción

Returns the first EditorWindow of type t which is currently on the screen.

If there is none, creates and shows new window at the position rect and returns the instance of it.


Create an empty 100x150px window at the upper left corner of the screen.

	// Create a dockable empty window at the top left corner of the screen
	// with 100px width and 150px height
	
	import UnityEditor;
	
	class GetWindowRectEx extends EditorWindow {	
		@MenuItem("Example/Display simple sized Window")
		static function Initialize() {
			var window : GetWindowEx = 
				EditorWindow.GetWindowWithRect(GetWindowRectEx, Rect(0, 0, 100, 150));
		}
	}
using UnityEngine;
using UnityEditor;

// Create a dockable empty window at the top left corner of the screen // with 100px width and 150px height public class EditorWindowTest : EditorWindow {

[MenuItem("Example/Display simple sized Window")] static void Initialize() { EditorWindowTest window = (EditorWindowTest)EditorWindow.GetWindowWithRect(typeof(EditorWindowTest), new Rect(0, 0, 100, 150)); } }

public static function GetWindowWithRect(rect: Rect): T;
public static T GetWindowWithRect(Rect rect);
public static function GetWindowWithRect(rect: Rect, utility: bool): T;
public static T GetWindowWithRect(Rect rect, bool utility);
public static function GetWindowWithRect(rect: Rect, utility: bool, title: string): T;
public static T GetWindowWithRect(Rect rect, bool utility, string title);
public static function GetWindowWithRect(rect: Rect, utility: bool, title: string, focus: bool): T;
public static T GetWindowWithRect(Rect rect, bool utility, string title, bool focus);

Parámetros

t The type of the window. Must derive from EditorWindow.
rect The position on the screen where a newly created window will show.
utility Set this to true, to create a floating utility window, false to create a normal window.
title If GetWindow creates a new window, it will get this title. If this value is null, use the class name as title.
focus Whether to give the window focus, if it already exists. (If GetWindow creates a new window, it will always get focus).

Descripción

Returns the first EditorWindow of type t which is currently on the screen.

If there is none, creates and shows new window at the position rect and returns the instance of it.