You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CrowdControl/Assets/Feel/MMTools/Tools/MMExtensions/MMScrollRectExtensions.cs

30 lines
685 B
C#

using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using UnityEngine.UI;
namespace MoreMountains.Tools
{
/// <summary>
/// Scrollrect extensions
/// </summary>
public static class ScrollRectExtensions
{
/// <summary>
/// Scrolls a scroll rect to the top
/// </summary>
/// <param name="scrollRect"></param>
public static void MMScrollToTop(this ScrollRect scrollRect)
{
scrollRect.normalizedPosition = new Vector2(0, 1);
}
/// <summary>
/// Scrolls a scroll rect to the bottom
/// </summary>
public static void MMScrollToBottom(this ScrollRect scrollRect)
{
scrollRect.normalizedPosition = new Vector2(0, 0);
}
}
}