parent
e105d9f2dd
commit
6796c319a3
|
@ -1645,6 +1645,14 @@ namespace UnityEditor.UI
|
||||||
go.AddComponent<UI_Knob>();
|
go.AddComponent<UI_Knob>();
|
||||||
Selection.activeGameObject = go;
|
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
|
#endregion
|
||||||
|
|
||||||
|
|
|
@ -100,6 +100,7 @@ There are almost 70 extension controls / effect and other utilities in the proje
|
||||||
------|------|------|------|
|
------|------|------|------|
|
||||||
Accordion|HSVPicker|SelectionBox|UIButton|UIFlippable
|
Accordion|HSVPicker|SelectionBox|UIButton|UIFlippable
|
||||||
ComboBox|AutoCompleteComboBox|DropDownList|BoundToolTip|UIWindowBase
|
ComboBox|AutoCompleteComboBox|DropDownList|BoundToolTip|UIWindowBase
|
||||||
|
UI_Knob|TextPic|||
|
||||||
||||
|
||||
|
||||||
|
|
||||||
[Primitives](https://bitbucket.org/ddreaper/unity-ui-extensions/wiki/Controls#Primitives)|||||
|
[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.
|
// 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 />
|
// Use: <quad name=NAME size=25 width=1 />
|
||||||
|
[AddComponentMenu("UI/Extensions/TextPic")]
|
||||||
public class TextPic : Text, IPointerClickHandler, IPointerExitHandler, IPointerEnterHandler, ISelectHandler
|
public class TextPic : Text, IPointerClickHandler, IPointerExitHandler, IPointerEnterHandler, ISelectHandler
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
@ -24,6 +24,7 @@ using UnityEngine.EventSystems;
|
||||||
namespace UnityEngine.UI.Extensions
|
namespace UnityEngine.UI.Extensions
|
||||||
{
|
{
|
||||||
[RequireComponent(typeof(Image))]
|
[RequireComponent(typeof(Image))]
|
||||||
|
[AddComponentMenu("UI/Extensions/UI_Knob")]
|
||||||
public class UI_Knob : MonoBehaviour, IPointerDownHandler, IPointerUpHandler, IPointerEnterHandler, IPointerExitHandler, IBeginDragHandler, IDragHandler
|
public class UI_Knob : MonoBehaviour, IPointerDownHandler, IPointerUpHandler, IPointerEnterHandler, IPointerExitHandler, IBeginDragHandler, IDragHandler
|
||||||
{
|
{
|
||||||
public enum Direction { CW, CCW };
|
public enum Direction { CW, CCW };
|
||||||
|
|
Loading…
Reference in New Issue