parent
e105d9f2dd
commit
6796c319a3
|
@ -1646,6 +1646,14 @@ namespace UnityEditor.UI
|
|||
Selection.activeGameObject = go;
|
||||
}
|
||||
|
||||
[MenuItem("GameObject/UI/Extensions/TextPic", false)]
|
||||
static public void AddTextPic(MenuCommand menuCommand)
|
||||
{
|
||||
GameObject go = CreateUIElementRoot("TextPic", menuCommand, s_ImageGUIElementSize);
|
||||
go.AddComponent<TextPic>();
|
||||
Selection.activeGameObject = go;
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Helper Functions
|
||||
|
|
|
@ -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)|||||
|
||||
|
|
|
@ -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: <quad name=NAME size=25 width=1 />
|
||||
[AddComponentMenu("UI/Extensions/TextPic")]
|
||||
public class TextPic : Text, IPointerClickHandler, IPointerExitHandler, IPointerEnterHandler, ISelectHandler
|
||||
{
|
||||
/// <summary>
|
||||
|
|
|
@ -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 };
|
||||
|
|
Loading…
Reference in New Issue