Added Range Slider to controls list

pull/413/head
Simon (darkside) Jackson 2019-11-15 18:48:20 +00:00
parent 9746d1f7db
commit 88b4a54603
4 changed files with 5 additions and 5 deletions

View File

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

@ -1 +1 @@
Subproject commit 8397740c311748c1d64c5e591a07193cda331921
Subproject commit 7da8fd1b9cd0a6cfc420ca42c61e714583c49f18

View File

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

View File

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