position | どこにラベルを表示するか |
content | Text to show @style style to use. |
ドロップシャドウ付きのラベルを描画します。
高速ではありませんので注意して使用してください。
Shadow Label in and editor window.
using UnityEngine; using UnityEditor;
public class EditorGUIDropShadowLabel : EditorWindow { // Write some text using a Shadow Label. string text = "This is some text with a Shadow Label";
[MenuItem("Examples/Shadow Label")] static void Init() { var window = GetWindow<EditorGUIDropShadowLabel>(); 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(); } }