Объявление
public static void DropShadowLabel(Rect position, string text);public static void DropShadowLabel(Rect position, GUIContent content);
public static void DropShadowLabel(Rect position, string text, GUIStyle style);
public static void DropShadowLabel(Rect position, GUIContent content, GUIStyle style);
Параметры
position | Где показать этикетку. |
content | Текст для отображения стиль @style для использования. |
Описание
Рисует метку с тенью.
Не сверхбыстрый, поэтому используйте его с осторожностью.

using UnityEngine;
using UnityEditor;
public class EditorGUIDropShadowLabel : EditorWindow
{
// Напишите текст, используя тень Label.
string text = "This is some text with a Shadow Label";
[MenuItem("Examples/Shadow Label")]
static void Init()
{
var window = GetWindow();
window.position = new Rect(0, 0, 250, 60);
window.Show();
}
void OnGUI()
{
EditorGUI.DropShadowLabel(new Rect(0, 5, 245, 20), text);
if (GUI.Button(new Rect(0, 30, 250, 20), "Close"))
this.Close();
}
void OnInspectorUpdate()
{
Repaint();
}
}