真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Unity如何實(shí)現(xiàn)3D貪吃蛇

這篇文章主要為大家展示了Unity如何實(shí)現(xiàn)3D貪吃蛇,內(nèi)容簡而易懂,希望大家可以學(xué)習(xí)一下,學(xué)習(xí)完之后肯定會(huì)有收獲的,下面讓小編帶大家一起來看看吧。

創(chuàng)新互聯(lián)建站是一家專業(yè)提供黃陂企業(yè)網(wǎng)站建設(shè),專注與成都網(wǎng)站制作、網(wǎng)站設(shè)計(jì)、H5開發(fā)、小程序制作等業(yè)務(wù)。10年已為黃陂眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站建設(shè)公司優(yōu)惠進(jìn)行中。

記錄一下前段時(shí)間寫到的一個(gè)3D貪吃蛇的移動(dòng)代碼。

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


public class GameManager : MonoBehaviour
{
 List bodyList = new List();//身體位置的列表
 private float speed = 2f;//移動(dòng)速度
 public GameObject bodyObj;//用來生成的身體對象
 List bodyCreatePostion = new List();//身體部分的transfrom 列表
 private float TransOffset=1f;//位置間隔
 private List mapAddress=new List();//前進(jìn)目標(biāo)在地圖上的位置,
 public Transform firstBody;//第一個(gè)身體部件的transfrom
 const int row = 100;//地圖寬
 const int col = 100;//地圖高
 int step=1;//步伐
 int x=0, z=0;//記錄x和z軸的移動(dòng)量

 // Start is called before the first frame update
 public Vector3[,] map = new Vector3[row, col];//地圖
 // Start is called before the first frame update
 void Start()
 {
  
  for (int i = 0; i < row; i++)//生成地圖
  {
   for (int j = 0; j < col; j++)
   {
    map[i, j] = new Vector3(i, 1.5f, j);
   }
  }
  transform.position =map[0,0];將當(dāng)前位置設(shè)為原點(diǎn)
  mapAddress.Add(new Vector2(1,0));//增加第一個(gè)目標(biāo)
  bodyList.Add(transform);//刷新第一個(gè)頭和一個(gè)身體的transform
  bodyList.Add(firstBody);
  mapAddress.Add(new Vector2(0,0));
 }

 // Update is called once per frame
 void Update()
 {
  for (int i = 0; i < row - 1; i++)
  {
   for (int j = 0; j < col - 1; j++)//繪制地圖格子
   {
    Debug.DrawLine(map[i, j], map[i + 1, j], Color.red);
    Debug.DrawLine(map[i, j], map[i, j + 1], Color.red);
   }
  }
  if (Input.anyKeyDown)//有任何鍵按下
  {
   if (Input.GetKeyDown(KeyCode.W) && z != -step)//上
   {
    z = step;
    x = 0;


   }
   if (Input.GetKeyDown(KeyCode.S) && z != step)//下
   {
    z = -step;
    x = 0;
    
   
   }
   if (Input.GetKeyDown(KeyCode.A) && x != step)//左
   {
    x = -step;
    z = 0;

   
   }
   if (Input.GetKeyDown(KeyCode.D) && x != -step)//右
   {
    x = step;
    z = 0;
   
    
   }
   

  }
  Move();


 }
 private void Move()//移動(dòng)
 {


  if (Vector3.Distance(bodyList[0].position, map[(int)mapAddress[0].x + x, (int)mapAddress[0].y + z]) < 0.7f)//當(dāng)前坐標(biāo)和目標(biāo)位置的距離小于0.5f
  {
   
   for (int i = mapAddress.Count - 1; i > 0; i--)//刷新后一個(gè)的目標(biāo)為前一個(gè)的目標(biāo)
   {
    mapAddress[i] = mapAddress[i-1];
   }
   
   mapAddress[0] = new Vector2(mapAddress[0].x + x, mapAddress[0].y + z);//刷新第一個(gè)目標(biāo)的位置

  }
  else
  {
   for (int i = bodyList.Count - 1; i > 0; i--)//移動(dòng)
   {
    bodyList[i].position = Vector3.MoveTowards(bodyList[i].position,
              map[(int)mapAddress[i - 1].x, (int)mapAddress[i - 1].y], Time.deltaTime * speed);

   }
   bodyList[0].position = Vector3.MoveTowards(transform.position,
             map[(int)mapAddress[0].x + x, (int)mapAddress[0].y + z], Time.deltaTime * speed);
  }
 }

 private void OnCollisionEnter(Collision collision)//碰撞到了食物就增加身體長度
 {

  if (collision.collider.tag == "Food")
  {
   
   Destroy(collision.collider.gameObject);
   GameObject tmpGameObject=new GameObject();
   Vector2 tmpVec = new Vector2();
   
   tmpGameObject = Instantiate(bodyObj, map[(int)mapAddress[mapAddress.Count - 1].x+x, (int)mapAddress[mapAddress.Count - 1].y +z], Quaternion.identity);//生成body物體
   tmpVec = new Vector2(mapAddress[mapAddress.Count - 1].x+x, mapAddress[mapAddress.Count - 1].y +z);
   //增加身體的transform和目標(biāo)向量
   bodyList.Add(tmpGameObject.transform);
   mapAddress.Add(tmpVec);
  }
  
 }
}

以上就是關(guān)于Unity如何實(shí)現(xiàn)3D貪吃蛇的內(nèi)容,如果你們有學(xué)習(xí)到知識或者技能,可以把它分享出去讓更多的人看到。


當(dāng)前題目:Unity如何實(shí)現(xiàn)3D貪吃蛇
分享地址:http://weahome.cn/article/gchicc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部