Added Range Slider to controls list
parent
9746d1f7db
commit
88b4a54603
|
@ -1890,7 +1890,7 @@ namespace UnityEditor.UI
|
|||
#endregion
|
||||
|
||||
#region Radial Slider
|
||||
[MenuItem("GameObject/UI/Extensions/RadialSlider", false)]
|
||||
[MenuItem("GameObject/UI/Extensions/Radial Slider", false)]
|
||||
static public void AddRadialSlider(MenuCommand menuCommand)
|
||||
{
|
||||
GameObject sliderRoot = CreateUIElementRoot("Radial Slider", menuCommand, s_ThickGUIElementSize);
|
||||
|
@ -1928,7 +1928,7 @@ namespace UnityEditor.UI
|
|||
#endregion
|
||||
|
||||
#region RangeSlider
|
||||
[MenuItem("GameObject/UI/Extensions/RangeSlider", false)]
|
||||
[MenuItem("GameObject/UI/Extensions/Range Slider", false)]
|
||||
static public void AddRangeSlider(MenuCommand menuCommand)
|
||||
{
|
||||
GameObject rangeSliderRoot = CreateUIElementRoot("Range Slider", menuCommand, new Vector2(160, 20));
|
||||
|
|
2
Examples
2
Examples
|
@ -1 +1 @@
|
|||
Subproject commit 8397740c311748c1d64c5e591a07193cda331921
|
||||
Subproject commit 7da8fd1b9cd0a6cfc420ca42c61e714583c49f18
|
|
@ -137,7 +137,7 @@ There are almost 70+ extension controls / effect and other utilities in the proj
|
|||
Accordion|ColorPicker|SelectionBox|UIFlippable|ComboBox
|
||||
AutoCompleteComboBox|DropDownList|BoundToolTip|UIWindowBase|UI_Knob
|
||||
TextPic|InputFocus|Box Slider|CooldownButton|Segmented Control
|
||||
Stepper||||
|
||||
Stepper|Range Slider||
|
||||
||||
|
||||
|
||||
[Primitives](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Controls#markdown-header-primitives)|||||
|
||||
|
|
|
@ -9,7 +9,7 @@ using UnityEngine.EventSystems;
|
|||
|
||||
namespace UnityEngine.UI.Extensions
|
||||
{
|
||||
[AddComponentMenu("UI/Range Slider", 34)]
|
||||
[AddComponentMenu("UI/Extensions/Range Slider", 34)]
|
||||
[ExecuteInEditMode]
|
||||
[RequireComponent(typeof(RectTransform))]
|
||||
public class RangeSlider : Selectable, IDragHandler, IInitializePotentialDragHandler, ICanvasElement
|
||||
|
|
Loading…
Reference in New Issue