PathWalker.cs 623 B

123456789101112131415161718192021
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class PathWalker : MonoBehaviour
  5. {
  6. public List<Transform> pathNodes = new List<Transform>();
  7. public int curIndex = 0;
  8. void Update(){
  9. if(pathNodes.Count < 2){return;}
  10. if(curIndex < pathNodes.Count){
  11. if(Vector2.Distance(pathNodes[curIndex].position, transform.position) > 0.1f){
  12. //Move Towards node
  13. transform.position += (pathNodes[curIndex].position - transform.position).normalized * Time.deltaTime * 2f;
  14. }else{
  15. curIndex++;
  16. }
  17. }
  18. }
  19. }