中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

Unity實現3D循環滾動效果的方法

發布時間:2021-04-12 12:51:08 來源:億速云 閱讀:545 作者:小新 欄目:編程語言

這篇文章主要介紹Unity實現3D循環滾動效果的方法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

具體內容如下

Unity實現3D循環滾動效果的方法

然后通過SetDepthAndPosition這個方法,實現圖片的空間空間展開

Unity實現3D循環滾動效果的方法

Unity實現3D循環滾動效果的方法

Z軸和Y軸,系數是一樣的

經過上面設置,空間就擺開了

Unity實現3D循環滾動效果的方法

using UnityEngine;
using System.Collections;
using System.Collections.Generic;

public class SelectRole : MonoBehaviour {
 public GameObject rolesObj;
 private int _half = 0;//一側的卡片數
 private int _movX = 150;//X軸移動距離
 private int _movY = 50;//Y軸移動距離
 private int _movZ = 60;//Z軸移動距離
 private int count = 3;//組件數
 private List<RoleItem> _roleList = new List<RoleItem>();

 // Use this for initialization
 void Start () {
  //加載圖片
  Object[] textureList = (Object[])Resources.LoadAll("Pictures");

  int maxDepth = textureList.Length % 2 == 1 ? textureList.Length / 2 + 1 : textureList.Length / 2;//最大深度
  _half = maxDepth;  

  for (int i = 0; i < textureList.Length; i++)
  {   
   //加載角色圖片預設
   GameObject role = Instantiate(Resources.Load("Role", typeof(GameObject))) as GameObject;   
   role.transform.parent = rolesObj.transform;
   role.transform.localScale = Vector3.one;

   EventDelegate.Add(role.GetComponent<UIToggle>().onChange , RoleToggleChange);

   RoleItem item = role.GetComponent<RoleItem>();   
   item.texture.mainTexture = textureList[i] as Texture;

   //設置角色卡片排序命名
   role.name = maxDepth.ToString();
   if (i > 0)
   {
    //奇數設置為右邊,下標為正數
    if (i % 2 == 1)
    {
     maxDepth--;
     role.name = maxDepth.ToString();
    }
    //偶數設置為左邊,下標為負數
    else
    {
     role.name = "-" + maxDepth.ToString();
    }
   }

   SetDepthAndPosition(item,0,0);
   _roleList.Add(item);
  }  
 }


 private void SetDepthAndPosition(RoleItem role,int dir,int index)
 {
  int indexDepth = 0;
  //左右移動后,重新排序命名
  if (dir != 0)
  {
   if (index*dir > _half )
    indexDepth = -dir * (_half - 1);
   else
    indexDepth = index > -1 && index < 1 ? dir : index;
   role.name = indexDepth.ToString(); 
  }  
  else
  {
   indexDepth = int.Parse(role.name);
  }

  TweenPosition tp = role.GetComponent<TweenPosition>();
  int x = indexDepth < 0 ? -(_half + indexDepth) * _movX : (_half - indexDepth) * _movX;
  indexDepth = System.Math.Abs(indexDepth);
  tp.to = new Vector3(x, (_half - indexDepth) * _movY, (_half - indexDepth) * _movZ);


  role.bg.depth = count * indexDepth;
  role.active.depth = 1 + count * indexDepth;
  role.texture.depth = 2 + count * indexDepth;  

  role.GetComponent<UIToggle>().value = indexDepth == _half ? true:false;
  tp.PlayForward();
 }

 /// <summary>
 /// 左邊
 /// </summary>
 public void LeftClick()
 {
  //重新排列順序
  foreach (RoleItem role in _roleList)
  {
   int index = int.Parse(role.name);
   print(index);
   SetDepthAndPosition(role,1,++index);
  } 
 }

 /// <summary>
 /// 右邊
 /// </summary>
 public void RightClick()
 {
  //重新排列順序
  foreach (RoleItem role in _roleList)
  {
   int index = int.Parse(role.name);
   SetDepthAndPosition(role,-1,--index);
  }
 }

 /// <summary>
 /// 鼠標選中某個角色
 /// </summary>
 public void RoleToggleChange()
 { 
  if(UIToggle.current.value)
  {
   int index = int.Parse(UIToggle.current.name);
   int moveCount = _half - System.Math.Abs(index);//移動個數
   for (int i = 0; i < moveCount;i++ )
   {
    if (index > 0)
     LeftClick();
    else
     RightClick();
   }   
  }
 }

}

以上是“Unity實現3D循環滾動效果的方法”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

加查县| 亳州市| 商都县| 衡水市| 剑河县| 望城县| 阿鲁科尔沁旗| 连云港市| 临夏市| 安多县| 华安县| 龙口市| 措美县| 突泉县| 麻栗坡县| 中超| 兴和县| 吉林市| 淳安县| 名山县| 吉隆县| 娱乐| 武川县| 尉氏县| 邵阳县| 台江县| 庆阳市| 万州区| 永善县| 巴东县| 仁怀市| 鹤山市| 镇原县| 南丰县| 怀仁县| 八宿县| 佛冈县| 宁晋县| 修文县| 伊宁县| 攀枝花市|