91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Unity如何使用ScrollRect制作翻頁

發布時間:2020-08-03 10:27:29 來源:億速云 閱讀:257 作者:小豬 欄目:編程語言

這篇文章主要講解了Unity如何使用ScrollRect制作翻頁,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。

1.標準的層級結構 ScrollRect->ViewPort->Content,Viewport負責顯示區域的大小一般和Mask一起配合使用,Content使用Layout來布局,如果想使用代碼來自動定位顯示位置需要在Content加上Content size filter.

2.ScrollRectHelper

using UnityEngine;
using UnityEngine.UI;
using UnityEngine.EventSystems;
using System.Collections.Generic;
using System;

public class ScrollRectHelper : MonoBehaviour, IBeginDragHandler, IEndDragHandler
{
  // 滑動速度
  public float smooting = 5;

  // 每頁顯示的項目
  [SerializeField]
  private int countPerPage = 10;

  ScrollRect srect;
  // 總頁數
  float totalPages;
  // 是否拖拽結束
  bool isDrag = false;
  // 總頁數索引比列 0-1
  List<float> listPageValue = new List<float> { 0 };
  // 滑動的目標位置
  public float targetPos = 0;
  // 當前位置索引
  float nowindex = 0;                 

  void Awake()
  {
    srect = GetComponent<ScrollRect>();
  }

  public string PageText()
  {
    return (nowindex + 1) + "/" + (totalPages + 1);
  }

  // 計算每頁比例
  public void CalcListPageValue<T>() where T : MonoBehaviour
  {
    T[] items = srect.content.GetComponentsInChildren<T>();
    srect.content.rect.Set(srect.content.rect.width / 2, srect.content.rect.y, srect.content.rect.width, srect.content.rect.height);
    totalPages = (int)(Math.Ceiling((float)items.Length / countPerPage) - 1);
    if (items.Length != 0)
    {
      for (float i = 1; i <= totalPages; i++)
      {
        //Debug.Log(i / totalPages);
        listPageValue.Add((i / totalPages));
      }
    }
  }

  void Update()
  {
    if (!isDrag)
    {
      srect.horizontalNormalizedPosition = Mathf.Lerp(srect.horizontalNormalizedPosition, targetPos,
        Time.deltaTime * smooting);
    }

    // Debug
    if (Input.GetKeyDown(KeyCode.LeftArrow)) PressLeft();
    if (Input.GetKeyDown(KeyCode.RightArrow)) PressRight();
  }

  /// <summary>
  /// 拖動開始
  /// </summary>
  /// <param name="eventData"></param>
  public void OnBeginDrag(PointerEventData eventData)
  {
    isDrag = true;
  }

  /// <summary>
  /// 拖拽結束
  /// </summary>
  /// <param name="eventData"></param>
  public void OnEndDrag(PointerEventData eventData)
  {
    isDrag = false;
    var tempPos = srect.horizontalNormalizedPosition; //獲取拖動的值
    var index = 0;
    float offset = Mathf.Abs(listPageValue[index] - tempPos);  //拖動的絕對值
    for (int i = 1; i < listPageValue.Count; i++)
    {
      float temp = Mathf.Abs(tempPos - listPageValue[i]);
      if (temp < offset)
      {
        index = i;
        offset = temp;
      }
    }
    targetPos = listPageValue[index];
    nowindex = index;
  }

  public void PressLeft()
  {
    nowindex = Mathf.Clamp(nowindex - 1, 0, totalPages);
    targetPos = listPageValue[Convert.ToInt32(nowindex)];
  }

  public void PressRight()
  {
    nowindex = Mathf.Clamp(nowindex + 1, 0, totalPages);
    targetPos = listPageValue[Convert.ToInt32(nowindex)];
  }
}

看完上述內容,是不是對Unity如何使用ScrollRect制作翻頁有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

桐庐县| 威海市| 隆德县| 襄樊市| 湖北省| 台北市| 漳州市| 海兴县| 靖安县| 周至县| 鄂托克旗| 平顶山市| 仁布县| 文化| 镶黄旗| 获嘉县| 临湘市| 兴山县| 邛崃市| 巫山县| 罗源县| 嫩江县| 沙田区| 青海省| 沐川县| 鄂伦春自治旗| 磐安县| 沽源县| 万源市| 虎林市| 静宁县| 扬中市| 平果县| 汪清县| 叙永县| 新河县| 嘉禾县| 华蓥市| 吴堡县| 彩票| 江华|