summaryrefslogtreecommitdiff
path: root/Assembly_CSharp/GamePlay/Waypoint.cs
blob: 2623da263c8624b91edec626909a6d3f4e17d90b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
using System.Collections.Generic;
using UnityEngine;

//cs Waypoint ᵋ
public class Waypoint : MonoBehaviour
{
	[SerializeField]
	private Waypoint next;

	[SerializeField]
	private List<Waypoint> previous = new List<Waypoint>();

	public float distanceFromEnd;

	public bool trueDistance;

	private void Start()
	{
		UpdateDistance();
	}

	public Waypoint GetNextWaypoint()
	{
		if (next != null)
		{
			return next;
		}
		return this;
	}

	public void SetNextWaypoint(Waypoint newNext)
	{
		next = newNext;
	}

	public void AddPreviousWaypoint(Waypoint previousWaypoint)
	{
		previous.Add(previousWaypoint);
	}

	public Waypoint[] GetPreviousWaypoints()
	{
		return previous.ToArray();
	}

	public void UpdateDistance()
	{
		if (next == null)
		{
			trueDistance = true;
			return;
		}
		if (!next.trueDistance)
		{
			next.UpdateDistance();
		}
		if (!trueDistance)
		{
			distanceFromEnd = next.distanceFromEnd + Vector3.Magnitude(next.transform.position - base.transform.position);
			trueDistance = true;
		}
	}
}