2015-02-03 03:25:41 +08:00
|
|
|
/// 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.
|
|
|
|
|
|
|
|
using UnityEngine.EventSystems;
|
|
|
|
|
2015-02-03 07:07:31 +08:00
|
|
|
namespace UnityEngine.UI.Extensions
|
2015-02-03 03:25:41 +08:00
|
|
|
{
|
2016-05-24 03:57:56 +08:00
|
|
|
|
2015-02-03 07:07:31 +08:00
|
|
|
[RequireComponent(typeof(ScrollRect))]
|
2015-09-20 07:24:17 +08:00
|
|
|
[AddComponentMenu("Layout/Extensions/Horizontal Scroll Snap")]
|
2016-12-05 18:15:48 +08:00
|
|
|
public class HorizontalScrollSnap : ScrollSnapBase, IEndDragHandler
|
2015-02-03 07:07:31 +08:00
|
|
|
{
|
2016-12-19 06:51:16 +08:00
|
|
|
void Start()
|
2015-02-03 07:07:31 +08:00
|
|
|
{
|
2016-12-10 21:36:28 +08:00
|
|
|
isVertical = false;
|
2016-12-30 06:03:04 +08:00
|
|
|
childAnchorPoint = new Vector2(0, 0.5f);
|
2015-02-03 07:07:31 +08:00
|
|
|
DistributePages();
|
2016-12-22 00:52:19 +08:00
|
|
|
if(MaskArea) CalculateVisible();
|
2015-02-03 07:07:31 +08:00
|
|
|
_lerp = false;
|
2016-12-30 06:03:04 +08:00
|
|
|
_currentPage = StartingScreen;
|
2016-12-22 01:51:38 +08:00
|
|
|
SetScrollContainerPosition();
|
2015-02-03 07:07:31 +08:00
|
|
|
}
|
2015-02-03 03:25:41 +08:00
|
|
|
|
2015-02-03 07:07:31 +08:00
|
|
|
void Update()
|
2015-02-03 03:25:41 +08:00
|
|
|
{
|
2016-12-05 04:06:03 +08:00
|
|
|
if (!_lerp && _scroll_rect.velocity == Vector2.zero)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if (_lerp)
|
2015-02-03 03:25:41 +08:00
|
|
|
{
|
2016-05-17 20:26:50 +08:00
|
|
|
_screensContainer.localPosition = Vector3.Lerp(_screensContainer.localPosition, _lerp_target, transitionSpeed * Time.deltaTime);
|
2016-11-16 07:48:44 +08:00
|
|
|
if (Vector3.Distance(_screensContainer.localPosition, _lerp_target) < 0.1f)
|
2015-02-03 07:07:31 +08:00
|
|
|
{
|
|
|
|
_lerp = false;
|
2016-11-16 02:09:13 +08:00
|
|
|
EndScreenChange();
|
2015-02-03 07:07:31 +08:00
|
|
|
}
|
2016-12-05 04:06:03 +08:00
|
|
|
}
|
2016-12-22 00:52:19 +08:00
|
|
|
|
|
|
|
CurrentPage = GetPageforPosition(_screensContainer.localPosition);
|
|
|
|
|
|
|
|
//If the container is moving check if it needs to settle on a page
|
|
|
|
if (!_pointerDown && (_scroll_rect.velocity.x > 0.01 || _scroll_rect.velocity.x < 0.01))
|
2015-02-03 03:25:41 +08:00
|
|
|
{
|
2016-12-22 00:52:19 +08:00
|
|
|
// if the pointer is released and is moving slower than the threshold, then just land on a page
|
|
|
|
if ((_scroll_rect.velocity.x > 0 && _scroll_rect.velocity.x < SwipeVelocityThreshold) ||
|
|
|
|
(_scroll_rect.velocity.x < 0 && _scroll_rect.velocity.x > -SwipeVelocityThreshold))
|
|
|
|
{
|
|
|
|
ScrollToClosestElement();
|
|
|
|
}
|
2015-02-03 03:25:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-03 07:07:31 +08:00
|
|
|
private void DistributePages()
|
2015-02-03 03:25:41 +08:00
|
|
|
{
|
2016-12-10 21:36:28 +08:00
|
|
|
_screens = _screensContainer.childCount;
|
2016-12-30 06:03:04 +08:00
|
|
|
_scroll_rect.horizontalNormalizedPosition = 0;
|
2016-12-10 21:36:28 +08:00
|
|
|
|
2015-02-03 07:07:31 +08:00
|
|
|
int _offset = 0;
|
2016-11-15 22:52:34 +08:00
|
|
|
float _dimension = 0;
|
2016-09-03 05:38:06 +08:00
|
|
|
Rect panelDimensions = gameObject.GetComponent<RectTransform>().rect;
|
2016-11-15 22:52:34 +08:00
|
|
|
float currentXPosition = 0;
|
2016-12-10 21:36:28 +08:00
|
|
|
var pageStepValue = _childSize = (int)panelDimensions.width * ((PageStep == 0) ? 3 : PageStep);
|
2016-11-16 02:09:13 +08:00
|
|
|
|
2015-02-03 07:07:31 +08:00
|
|
|
|
|
|
|
for (int i = 0; i < _screensContainer.transform.childCount; i++)
|
|
|
|
{
|
|
|
|
RectTransform child = _screensContainer.transform.GetChild(i).gameObject.GetComponent<RectTransform>();
|
2016-11-15 22:52:34 +08:00
|
|
|
currentXPosition = _offset + (int)(i * pageStepValue);
|
2016-09-03 05:38:06 +08:00
|
|
|
child.sizeDelta = new Vector2(panelDimensions.width, panelDimensions.height);
|
2015-02-03 07:07:31 +08:00
|
|
|
child.anchoredPosition = new Vector2(currentXPosition, 0f);
|
2016-12-30 06:03:04 +08:00
|
|
|
child.anchorMin = child.anchorMax = child.pivot = childAnchorPoint;
|
2015-02-03 07:07:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
_dimension = currentXPosition + _offset * -1;
|
|
|
|
|
|
|
|
_screensContainer.GetComponent<RectTransform>().offsetMax = new Vector2(_dimension, 0f);
|
2016-11-16 07:48:44 +08:00
|
|
|
}
|
2016-05-24 03:57:56 +08:00
|
|
|
|
2016-12-10 21:36:28 +08:00
|
|
|
/// <summary>
|
2016-05-24 03:57:56 +08:00
|
|
|
/// Add a new child to this Scroll Snap and recalculate it's children
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="GO">GameObject to add to the ScrollSnap</param>
|
|
|
|
public void AddChild(GameObject GO)
|
|
|
|
{
|
|
|
|
_scroll_rect.horizontalNormalizedPosition = 0;
|
|
|
|
GO.transform.SetParent(_screensContainer);
|
|
|
|
DistributePages();
|
2016-12-22 01:51:38 +08:00
|
|
|
if (MaskArea) UpdateVisible();
|
2016-05-24 03:57:56 +08:00
|
|
|
|
2016-12-22 01:51:38 +08:00
|
|
|
SetScrollContainerPosition();
|
2016-05-24 03:57:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Remove a new child to this Scroll Snap and recalculate it's children
|
|
|
|
/// *Note, this is an index address (0-x)
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="index"></param>
|
|
|
|
/// <param name="ChildRemoved"></param>
|
|
|
|
public void RemoveChild(int index, out GameObject ChildRemoved)
|
|
|
|
{
|
|
|
|
ChildRemoved = null;
|
|
|
|
if (index < 0 || index > _screensContainer.childCount)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
_scroll_rect.horizontalNormalizedPosition = 0;
|
2016-12-22 01:51:38 +08:00
|
|
|
|
|
|
|
Transform child = _screensContainer.transform.GetChild(index);
|
|
|
|
child.SetParent(null);
|
|
|
|
ChildRemoved = child.gameObject;
|
2016-12-05 18:15:48 +08:00
|
|
|
|
2016-05-24 03:57:56 +08:00
|
|
|
DistributePages();
|
2016-12-22 01:51:38 +08:00
|
|
|
if (MaskArea) UpdateVisible();
|
2016-12-05 18:15:48 +08:00
|
|
|
|
2016-12-22 00:52:19 +08:00
|
|
|
if (_currentPage > _screens - 1)
|
2016-05-24 03:57:56 +08:00
|
|
|
{
|
2016-12-19 06:51:16 +08:00
|
|
|
CurrentPage = _screens - 1;
|
2016-05-24 03:57:56 +08:00
|
|
|
}
|
|
|
|
|
2016-12-22 01:51:38 +08:00
|
|
|
SetScrollContainerPosition();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void SetScrollContainerPosition()
|
|
|
|
{
|
|
|
|
_scrollStartPosition = _screensContainer.localPosition.x;
|
2016-12-22 00:52:19 +08:00
|
|
|
_scroll_rect.horizontalNormalizedPosition = (float)(_currentPage) / (_screens - 1);
|
2016-05-24 03:57:56 +08:00
|
|
|
}
|
|
|
|
|
2016-12-30 06:03:04 +08:00
|
|
|
/// <summary>
|
|
|
|
/// used for changing / updating between screen resolutions
|
|
|
|
/// </summary>
|
|
|
|
public void UpdateLayout()
|
|
|
|
{
|
|
|
|
_lerp = false;
|
|
|
|
DistributePages();
|
|
|
|
SetScrollContainerPosition();
|
|
|
|
}
|
|
|
|
|
2015-02-03 07:07:31 +08:00
|
|
|
#region Interfaces
|
2016-12-05 04:06:03 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Release screen to swipe
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="eventData"></param>
|
2015-02-03 07:07:31 +08:00
|
|
|
public void OnEndDrag(PointerEventData eventData)
|
2015-02-03 03:25:41 +08:00
|
|
|
{
|
2015-02-03 07:07:31 +08:00
|
|
|
if (_scroll_rect.horizontal)
|
2015-02-03 03:25:41 +08:00
|
|
|
{
|
2015-02-03 07:07:31 +08:00
|
|
|
if (UseFastSwipe)
|
2015-02-03 03:25:41 +08:00
|
|
|
{
|
2016-12-05 04:06:03 +08:00
|
|
|
//If using fastswipe - then a swipe does page next / previous
|
2016-12-22 00:52:19 +08:00
|
|
|
if ((_scroll_rect.velocity.x > 0 &&_scroll_rect.velocity.x > FastSwipeThreshold) ||
|
|
|
|
_scroll_rect.velocity.x < 0 && _scroll_rect.velocity.x < -FastSwipeThreshold)
|
2015-02-03 03:25:41 +08:00
|
|
|
{
|
2016-12-05 04:06:03 +08:00
|
|
|
_scroll_rect.velocity = Vector3.zero;
|
2015-02-03 07:07:31 +08:00
|
|
|
if (_startPosition.x - _screensContainer.localPosition.x > 0)
|
|
|
|
{
|
2016-12-05 04:06:03 +08:00
|
|
|
NextScreen();
|
2015-02-03 07:07:31 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-12-05 04:06:03 +08:00
|
|
|
PreviousScreen();
|
2015-02-03 07:07:31 +08:00
|
|
|
}
|
2015-02-03 03:25:41 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-12-05 04:06:03 +08:00
|
|
|
ScrollToClosestElement();
|
2015-02-03 03:25:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-12-05 18:15:48 +08:00
|
|
|
#endregion
|
2015-02-03 03:25:41 +08:00
|
|
|
}
|
|
|
|
}
|