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