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.

EditorGUI.Toggle

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 Toggle(position: Rect, value: bool): bool;
public static bool Toggle(Rect position, bool value);
public static function Toggle(position: Rect, label: string, value: bool): bool;
public static bool Toggle(Rect position, string label, bool value);
public static function Toggle(position: Rect, value: bool, style: GUIStyle): bool;
public static bool Toggle(Rect position, bool value, GUIStyle style);
public static function Toggle(position: Rect, label: string, value: bool, style: GUIStyle): bool;
public static bool Toggle(Rect position, string label, bool value, GUIStyle style);
public static function Toggle(position: Rect, label: GUIContent, value: bool): bool;
public static bool Toggle(Rect position, GUIContent label, bool value);
public static function Toggle(position: Rect, label: GUIContent, value: bool, style: GUIStyle): bool;
public static bool Toggle(Rect position, GUIContent label, bool value, GUIStyle style);

Parámetros

position Rectangle on the screen to use for the toggle.
label Optional label in front of the toggle.
value The shown state of the toggle.
style Optional GUIStyle.

Valor de retorno

bool The selected state of the toggle.

Descripción

Make a toggle.


Toggle control in an Editor Window.

	// Use a toggle button to show/hide a button that can close the window.
	
	class EditorGUIToggle extends EditorWindow {
	
		var showClose : boolean = true;
	
		@MenuItem("Examples/EditorGUI Toggle usage")
		static function Init() {
			var window = GetWindow(EditorGUIToggle);
			window.Show();
		}
		
		function OnGUI() {
			showClose = EditorGUI.Toggle(Rect(0,5,position.width,20),
						"Show Close Button",
						showClose);
			if(showClose)
				if(GUI.Button(Rect(0, 25, position.width, 100),"Close Window!"))
					this.Close();
		}
	}