Some more restructuring whilst documentation updates continue.
Hopefully last breaking changes. --HG-- branch : develop_5.3pull/413/head
parent
6796c319a3
commit
ee300b4079
|
@ -100,7 +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|||
|
||||
UI_Knob|TextPic|InputFocus|ImageExtended|
|
||||
||||
|
||||
|
||||
[Primitives](https://bitbucket.org/ddreaper/unity-ui-extensions/wiki/Controls#Primitives)|||||
|
||||
|
@ -135,9 +135,9 @@ AimerInputModule|GamePadInputModule|||
|
|||
[Additional Components](https://bitbucket.org/ddreaper/unity-ui-extensions/wiki/Controls#Additional_Components)|||||
|
||||
------|------|------|------|
|
||||
ReturnKeyTrigger|TabNavigation|uGUITools|ScrollRectTweener|ScrollRectLinker
|
||||
ScrollRectEx|InputFocus|ImageExtended|UIScrollToSelection|UISelectableExtension
|
||||
ScrollRectEx|UI_InfiniteScroll|UI_ScrollRectOcclusion|UIScrollToSelection|UISelectableExtension
|
||||
switchToRectTransform|ScrollConflictManager|CLFZ2 (Encryption)|Serialization|DragCorrector
|
||||
PPIViewer|UI_TweenScale|UI_ScrollRectOcclusion|UI_InfiniteScroll|
|
||||
PPIViewer|UI_TweenScale|||
|
||||
||||
|
||||
|
||||
*More to come*
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
/// Credit BinaryX
|
||||
/// Sourced from - http://forum.unity3d.com/threads/scripts-useful-4-6-scripts-collection.264161/page-2#post-1945602
|
||||
/// Updated by ddreaper - removed dependency on a custom ScrollRect script. Now implements drag interfaces and standard Scroll Rect.
|
||||
/// Update by xesenix - rewrited almost entire code
|
||||
/// - configuration for direction move instead of 2 concurrent class (easiear to change direction in editor)
|
||||
/// - supports list layouted with horizontal or vertical layout need to match direction with type of layout used
|
||||
/// - dynamicly checks if scrolled list size changes and recalculates anchor positions
|
||||
/// Update by xesenix - rewrote almost the entire code
|
||||
/// - configuration for direction move instead of 2 concurrent class (easier to change direction in editor)
|
||||
/// - supports list layout with horizontal or vertical layout need to match direction with type of layout used
|
||||
/// - dynamic checks if scrolled list size changes and recalculates anchor positions
|
||||
/// and item size based on itemsVisibleAtOnce and size of root container
|
||||
/// if you dont wish to use this auto resize turn of autoLayoutItems
|
||||
/// - fixed current page made it independant from pivot
|
||||
/// if you don't wish to use this auto resize turn of autoLayoutItems
|
||||
/// - fixed current page made it independent from pivot
|
||||
/// - replaced pagination with delegate function
|
||||
using System;
|
||||
using UnityEngine.EventSystems;
|
||||
|
@ -19,7 +19,7 @@ namespace UnityEngine.UI.Extensions
|
|||
[AddComponentMenu("UI/Extensions/Scroll Snap")]
|
||||
public class ScrollSnap : MonoBehaviour, IBeginDragHandler, IEndDragHandler, IDragHandler
|
||||
{
|
||||
// needed becouse of reversed behavior of axis Y compared to X
|
||||
// needed because of reversed behaviour of axis Y compared to X
|
||||
// (positions of children lower in children list in horizontal directions grows when in vertical it gets smaller)
|
||||
public enum ScrollDirection
|
||||
{
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
namespace UnityEngine.UI.Extensions
|
||||
{
|
||||
[AddComponentMenu("UI/Extensions/HoverTooltip")]
|
||||
public class HoverTooltip : MonoBehaviour
|
||||
{
|
||||
//manually selectable padding for the background image
|
||||
|
|
Loading…
Reference in New Issue