diff --git a/Editor/UIExtensionsMenuOptions.cs b/Editor/UIExtensionsMenuOptions.cs index 0e5e19d..bb280bb 100644 --- a/Editor/UIExtensionsMenuOptions.cs +++ b/Editor/UIExtensionsMenuOptions.cs @@ -1645,6 +1645,14 @@ namespace UnityEditor.UI go.AddComponent(); Selection.activeGameObject = go; } + + [MenuItem("GameObject/UI/Extensions/TextPic", false)] + static public void AddTextPic(MenuCommand menuCommand) + { + GameObject go = CreateUIElementRoot("TextPic", menuCommand, s_ImageGUIElementSize); + go.AddComponent(); + Selection.activeGameObject = go; + } #endregion diff --git a/README.md b/README.md index 4d044a0..c311d90 100644 --- a/README.md +++ b/README.md @@ -100,6 +100,7 @@ There are almost 70 extension controls / effect and other utilities in the proje ------|------|------|------| Accordion|HSVPicker|SelectionBox|UIButton|UIFlippable ComboBox|AutoCompleteComboBox|DropDownList|BoundToolTip|UIWindowBase +UI_Knob|TextPic||| |||| [Primitives](https://bitbucket.org/ddreaper/unity-ui-extensions/wiki/Controls#Primitives)||||| diff --git a/Scripts/Controls/TextPic.cs b/Scripts/Controls/TextPic.cs index b29687c..f43fbed 100644 --- a/Scripts/Controls/TextPic.cs +++ b/Scripts/Controls/TextPic.cs @@ -12,6 +12,7 @@ namespace UnityEngine.UI.Extensions { // Image according to the label inside the name attribute to load, read from the Resources directory. The size of the image is controlled by the size property. // Use: + [AddComponentMenu("UI/Extensions/TextPic")] public class TextPic : Text, IPointerClickHandler, IPointerExitHandler, IPointerEnterHandler, ISelectHandler { /// diff --git a/Scripts/Controls/UI_Knob.cs b/Scripts/Controls/UI_Knob.cs index aca65f5..ebf40b3 100644 --- a/Scripts/Controls/UI_Knob.cs +++ b/Scripts/Controls/UI_Knob.cs @@ -24,6 +24,7 @@ using UnityEngine.EventSystems; namespace UnityEngine.UI.Extensions { [RequireComponent(typeof(Image))] + [AddComponentMenu("UI/Extensions/UI_Knob")] public class UI_Knob : MonoBehaviour, IPointerDownHandler, IPointerUpHandler, IPointerEnterHandler, IPointerExitHandler, IBeginDragHandler, IDragHandler { public enum Direction { CW, CCW };