Documentation update

--HG--
branch : develop_5.3
pull/413/head
Simon Jackson 2016-07-17 20:56:54 +01:00
parent e105d9f2dd
commit 6796c319a3
4 changed files with 11 additions and 0 deletions

View File

@ -1645,6 +1645,14 @@ namespace UnityEditor.UI
go.AddComponent<UI_Knob>();
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

View File

@ -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)|||||

View File

@ -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>

View File

@ -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 };