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.DropShadowLabel

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 DropShadowLabel(position: Rect, text: string): void;
public static void DropShadowLabel(Rect position, string text);
public static function DropShadowLabel(position: Rect, content: GUIContent): void;
public static void DropShadowLabel(Rect position, GUIContent content);
public static function DropShadowLabel(position: Rect, text: string, style: GUIStyle): void;
public static void DropShadowLabel(Rect position, string text, GUIStyle style);
public static function DropShadowLabel(position: Rect, content: GUIContent, style: GUIStyle): void;
public static void DropShadowLabel(Rect position, GUIContent content, GUIStyle style);

Parámetros

position Where to show the label.
content Text to show @style style to use.

Descripción

Draws a label with a drop shadow.

Not superfast, so use with caution.


Shadow Label in and editor window.

	// Write some text using a Shadow Label.
	
	class EditorGUIDropShadowLabel extends EditorWindow {
	
		var text : String = "This is some text with a Shadow Label";
	
		@MenuItem("Examples/Shadow Label")
		static function Init() {
			var window = GetWindow(EditorGUIDropShadowLabel);
			window.position = Rect(0, 0, 250, 60);
			window.Show();
		}
		function OnGUI() {
			EditorGUI.DropShadowLabel(Rect(0, 5, 245, 20), text);	
	
			if(GUI.Button(Rect(0,30, 250, 20),"Close"))
				this.Close();
		}
		function OnInspectorUpdate() {
			Repaint();
		}
	}