Version: 5.4
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 Text to show @style style to use.

説明

ドロップシャドウ付きのラベルを描画します。

高速ではありませんので注意して使用してください。


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