篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text DO Tween从对象创建路径并遵循路径相关的知识,希望对你有一定的参考价值。
Vector3[] path;
public List<GameObject> obstacles = new List<GameObject>();
path = new Vector3[obstacles.Count]; //initialize path array
for (int i = 0; i<obstacles.Count; i ++)
{
Debug.Log(obstacles[i].transform.position);
path[i] = obstacles[i].transform.position;
}
transform.GetComponent<Rigidbody>().DOPath(PATH, 30f,PathType.CatmullRom, PathMode.Sidescroller2D).SetLookAt(0.01f).SetLoops(-1, LoopType.Yoyo);
//SetLookAt(0.01f) look in front along the path
//SetLoops(-1, ...) infinite loop
//SetEase(Ease.Linear) set Ease type
以上是关于text DO Tween从对象创建路径并遵循路径的主要内容,如果未能解决你的问题,请参考以下文章