diff --git a/README.md b/README.md index d53fad6..5f2dca4 100644 --- a/README.md +++ b/README.md @@ -106,43 +106,44 @@ There are almost 70+ extension controls / effect and other utilities in the proj ##[UI Extensions controls list](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Controls)## -[Controls](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Controls#Controls)||||| +[Controls](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Controls#markdown-header-controls)||||| ------|------|------|------| Accordion|ColorPicker|SelectionBox|UIButton|UIFlippable ComboBox|AutoCompleteComboBox|DropDownList|BoundToolTip|UIWindowBase UI_Knob|TextPic|InputFocus|Box Slider|CooldownButton +Segmented Control|Stepper||| |||| -[Primitives](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Controls#Primitives)||||| +[Primitives](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Controls#markdown-header-primitives)||||| ------|------|------|------| UILineRenderer|UILineTextureRenderer|UICircle|DiamondGraph|UICornerCut UIPolygon|||| |||| -[Layouts](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Controls#Layouts)||||| +[Layouts](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Controls#markdown-header-layouts)||||| ------|------|------|------| Horizontal Scroll Snap|Vertical Scroll Snap|Flow Layout Group|Radial Layout|Tile Size Fitter Scroll Snap (alt implementation)|Reorderable List|UI Vertical Scroller|Curved Layout|Table Layout |||| -[Effects](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Controls#Effects)||||| +[Effects](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Controls#markdown-header-effect_components)||||| ------|------|------|------| Best Fit Outline|Curved Text|Gradient|Gradient2|Letter Spacing NicerOutline|RaycastMask|UIFlippable|UIImageCrop|SoftAlphaMask CylinderText|UIParticleSystem||| |||| -[VR Components](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Controls#VR)||||| +[VR Components](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Controls#markdown-header-vr_components)||||| ------|------|------|------| VRCursor|VRInputModule||| |||| -[Input Modules](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Controls#InputModules)||||| +[Input Modules](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Controls#markdown-header-input_modules)||||| ------|------|------|------| AimerInputModule|GamePadInputModule||| |||| -[Additional Components](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Controls#Additional_Components)||||| +[Additional Components](https://bitbucket.org/UnityUIExtensions/unity-ui-extensions/wiki/Controls#markdown-header-additional_components)||||| ------|------|------|------| ReturnKeyTrigger|TabNavigation|uGUITools|ScrollRectTweener|ScrollRectLinker ScrollRectEx|UI_InfiniteScroll|UI_ScrollRectOcclusion|UIScrollToSelection|UISelectableExtension diff --git a/Scripts/Controls/SegmentedControl.cs b/Scripts/Controls/SegmentedControl.cs index 9da3ad9..0367847 100644 --- a/Scripts/Controls/SegmentedControl.cs +++ b/Scripts/Controls/SegmentedControl.cs @@ -12,7 +12,7 @@ namespace UnityEngine.UI.Extensions [RequireComponent(typeof(RectTransform))] public class SegmentedControl : UIBehaviour { - private Button[] m_segments; + private Selectable[] m_segments; [SerializeField] [Tooltip("A GameObject with an Image to use as a separator between segments. Size of the RectTransform will determine the size of the separator used.\nNote, make sure to disable the separator GO so that it does not affect the scene")] private Graphic m_separator; @@ -28,7 +28,7 @@ namespace UnityEngine.UI.Extensions [Tooltip("Event to fire once the selection has been changed")] private SegmentSelectedEvent m_onValueChanged = new SegmentSelectedEvent(); - protected internal Button selectedSegment; + protected internal Selectable selectedSegment; protected float SeparatorWidth { @@ -48,7 +48,7 @@ namespace UnityEngine.UI.Extensions [Serializable] public class SegmentSelectedEvent : UnityEvent { } - public Button[] segments + public Selectable[] segments { get { @@ -135,9 +135,9 @@ namespace UnityEngine.UI.Extensions } #endif - private Button[] GetChildSegments() + private Selectable[] GetChildSegments() { - var buttons = GetComponentsInChildren