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.

GUI.ModalWindow

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 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);

Parámetros

id A unique id number.
clientRect Position and size of the window.
func A function which contains the immediate mode GUI code to draw the contents of your window.
text Text to appear in the title-bar area of the window, if any.
image An image to appear in the title bar of the window, if any.
content GUIContent to appear in the title bar of the window, if any.
style Style to apply to the window.

Descripción

Show a Modal Window.

Similar to GUI.Window, however the window will always be on top of all other GUI, and while displayed, is guaranteed to be sole recipient of all GUI input and events. While a ModalWindow is being displayed, other controls will not be processing input. Note that only one ModalWindow can be displayed at a time.