Unity實(shí)現(xiàn)物體運(yùn)動(dòng)時(shí)畫(huà)出軌跡
本文實(shí)例為大家分享了Unity實(shí)現(xiàn)物體運(yùn)動(dòng)時(shí)畫(huà)出軌跡的具體代碼,供大家參考,具體內(nèi)容如下
1、新建空物體,上賦LineRenderer

2、新建空物體,把軌跡畫(huà)出來(lái),設(shè)計(jì)和腳本。

3、LineMark的腳本是
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class LineMark : MonoBehaviour {
private GameObject clone;
private LineRenderer line;
private int i;
public GameObject obs;
public GameObject run;
Vector3 RunStart;
Vector3 RunNext;
// Use this for initialization
void Start () {
RunStart = run.transform.position;
clone = (GameObject)Instantiate(obs, run.transform.position, run.transform.rotation);//克隆一個(gè)帶有LineRender的物體
line = clone.GetComponent<LineRenderer>();//獲得該物體上的LineRender組件
// //line.SetColors(Color.blue, Color.red);//設(shè)置顏色
// //line.SetWidth(0.2f, 0.1f);//設(shè)置寬度
i = 0;
}
// Update is called once per frame
void Update () {
RunNext = run.transform.position;
if (RunStart != RunNext) {
i++;
line.SetVertexCount(i);//設(shè)置頂點(diǎn)數(shù)
line.SetPosition(i-1, run.transform.position);
}
RunStart = RunNext;
// if (Input.GetMouseButtonDown(0))
// {
// clone = (GameObject)Instantiate(obs, obs.transform.position, transform.rotation);//克隆一個(gè)帶有LineRender的物體
// line = clone.GetComponent<LineRenderer>();//獲得該物體上的LineRender組件
// line.SetColors(Color.blue, Color.red);//設(shè)置顏色
// line.SetWidth(0.2f, 0.1f);//設(shè)置寬度
// i = 0;
// print ("GetMouseButtonDown");
// }
// if (Input.GetMouseButton(0))
// {
// i++;
// line.SetVertexCount(i);//設(shè)置頂點(diǎn)數(shù)
// line.SetPosition(i - 1, Camera.main.ScreenToWorldPoint(new Vector3(Input.mousePosition.x, Input.mousePosition.y, 15)));//設(shè)置頂點(diǎn)位置
// print ("GetMouseButton");
//
// }
}
}
4、運(yùn)動(dòng)小球和腳本
Run.cs
using UnityEngine;
using System.Collections;
public class Run : MonoBehaviour
{
public GameObject target; //要到達(dá)的目標(biāo)
public float speed = 10; //速度
private float distanceToTarget; //兩者之間的距離
private bool move = true;
void Start()
{
//計(jì)算兩者之間的距離
distanceToTarget = Vector3.Distance(this.transform.position, target.transform.position);
StartCoroutine(StartShoot());
}
IEnumerator StartShoot()
{
while (move)
{
Vector3 targetPos = target.transform.position;
//讓始終它朝著目標(biāo)
this.transform.LookAt(targetPos);
//計(jì)算弧線中的夾角
float angle = Mathf.Min(1, Vector3.Distance(this.transform.position, targetPos) / distanceToTarget) * 45;
this.transform.rotation = this.transform.rotation * Quaternion.Euler(Mathf.Clamp(-angle, -42, 42), 0, 0);
float currentDist = Vector3.Distance(this.transform.position, target.transform.position);
if (currentDist < 0.5f)
move = true;
this.transform.Translate(Vector3.forward * Mathf.Min(speed * Time.deltaTime, currentDist));
yield return null;
}
}
}
5、目標(biāo)小球和運(yùn)動(dòng)設(shè)置的腳本

follew.cs
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class followme : MonoBehaviour {
Rigidbody follew;
// Use this for initialization
void Start () {
follew = GetComponent<Rigidbody> ();
}
// Update is called once per frame
void Update () {
transform.Translate (new Vector3(0.1f,0.1f,0.1f));
}
}
6、運(yùn)行結(jié)果


以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
C#中的Task.WaitAll和Task.WaitAny方法介紹
這篇文章介紹了C#中的Task.WaitAll和Task.WaitAny方法,文中通過(guò)示例代碼介紹的非常詳細(xì)。對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2022-04-04
C#部署數(shù)據(jù)庫(kù)及IIS站點(diǎn)
這篇文章主要為大家詳細(xì)介紹了C#部署數(shù)據(jù)庫(kù)及IIS站點(diǎn)的相關(guān)資料,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2018-03-03
C#獲取Word文檔中所有表格的實(shí)現(xiàn)代碼分享
這篇文章主要介紹了C#獲取Word文檔中所有表格的實(shí)現(xiàn)代碼分享,小編親測(cè)可用,需要的朋友可以參考下2014-09-09
C#/.Net 中快速批量給SQLite數(shù)據(jù)庫(kù)插入測(cè)試數(shù)據(jù)
這篇文章主要介紹了C#/.Net 中快速批量給SQLite數(shù)據(jù)庫(kù)插入測(cè)試數(shù)據(jù),本文直接給出實(shí)例代碼,需要的朋友可以參考下2015-06-06
C# SendMail發(fā)送郵件功能實(shí)現(xiàn)
這篇文章主要為大家詳細(xì)介紹了C# SendMail發(fā)送郵件功能實(shí)現(xiàn),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-06-06

