⭐ Unity 横向滑动列表 首尾相连 轮转图

效果如下:

场景挂载:

代码部分:

using DG.Tweening;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Drawing.Printing;
using UnityEngine;
using UnityEngine.EventSystems;
using UnityEngine.UI;
public class Create2dLzt : MonoBehaviour, IDragHandler, IEndDragHandler
{
    public Image prefab;
    float r;
    float c;
    float ang;
    float space = 400;//间距
    float n = 7;

    public List<Image> Images = new List<Image>();
    public List<Transform> lists = new List<Transform>();

    float moveAng = 0;

    /// <summary>
    /// 缩放最大小值
    /// </summary>
    float max = 3;
    float min = 1f;


    // Start is called before the first frame update
    void Start()
    {
        c = (space + prefab.rectTransform.rect.width) * n;
        r = c / (2 * Mathf.PI);
        ang = (2 * Mathf.PI) / n;

        Move();
    }

    private void Move()
    {
        for (int i = 0; i < n; i++)
        {
            if (Images.Count <= i)
            {
                Images.Add(Instantiate(prefab, transform));
                Images[i].sprite = Resources.Load<Sprite>("Img_" + i);
                lists.Add(Images[i].transform);
                Images[i].name = "Img_" + i;
            }
            float x = Mathf.Sin(ang * i + moveAng) * r;
            float z = Mathf.Cos(ang * i + moveAng) * r;
            float p = (r + z) / (2 * r);
            float scale = (max - min) * p + min;
            Images[i].transform.localScale = Vector3.one * scale;
            Images[i].rectTransform.anchoredPosition = new Vector2(x, 0);
        }

        lists.Sort((a, b) =>
        {
            if (a.localScale.x < b.localScale.x)
            {
                return -1;
            }
            else if (a.localScale.x == b.localScale.x)
            {
                return 0;
            }
            else
            {
                return 1;
            }

        });

        for (int i = 0; i < lists.Count; i++)
        {
            lists[i].SetSiblingIndex(i);
        }
    }

    public void OnDrag(PointerEventData eventData)
    {
        float dis = eventData.delta.x;
        float ang = dis / r;
        moveAng += ang;
        Move();
    }

    public void OnEndDrag(PointerEventData eventData)
    {
        float dis = eventData.delta.x;
        float time = Mathf.Abs(dis) / 100;
        DOTween.To((a) =>
        {
            float ang = a / r;
            moveAng += ang;
            Move();
        }, dis, 0, time).OnComplete(() =>
        {
            Align();
        });
    }

    private void Align()
    {
        float ang = Mathf.Asin(lists[lists.Count - 1].localPosition.x / r);
        float dis = ang * r;
        float time = Mathf.Abs(dis) / 100;
        DOTween.To((a) =>
        {
            moveAng = a;
            Move();
        }, moveAng, moveAng - ang, time);
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值