Liberi
An exergame built for kids with CP!
BotNavHelper.cs
1 using UnityEngine;
2 using System.Collections;
3 using System.Collections.Generic;
4 using System.Linq;
5 
9 public class BotNavHelper : MonoBehaviour
10 {
11  public float DiscoveryRadius;
12  public float WalkableRadius;
13 
14  BotNavHelper[] _siblings;
15 
19  public Vector3 GetRandomPoint ()
20  {
21  return transform.position + (Vector3)Random.insideUnitCircle * WalkableRadius;
22  }
23 
27  public BotNavHelper GetSiblingClosestTo (Vector3 point)
28  {
29  return _siblings.OrderBy(nav => (nav.transform.position - point).magnitude).FirstOrDefault();
30  }
31 
35  void OnDrawGizmos ()
36  {
37  Gizmos.color = new Color(1,0.5f,1,0.2f);
38  Gizmos.DrawWireSphere(transform.position, WalkableRadius);
39  Gizmos.color = new Color(1,1,1,0.2f);
40  Gizmos.DrawWireSphere(transform.position, DiscoveryRadius);
41  }
42 
46  void Awake ()
47  {
48  _siblings = FindObjectsOfType<BotNavHelper>()
49  .Where(nav => nav != this)
50  .Where(nav => IsTouching(nav, this))
51  .ToArray();
52  }
53 
57  public static bool IsTouching (BotNavHelper n0, BotNavHelper n1)
58  {
59  // p0 is a point in the direction of n0 to n1 with a magnitude of n0.Radius
60  Vector3 p0 = n0.transform.position + (n1.transform.position - n0.transform.position).normalized * n0.DiscoveryRadius;
61  return ((n1.transform.position - p0).magnitude < n1.DiscoveryRadius);
62  }
63 }
A helpful node Component for fast-cheap bot path finding.
Definition: BotNavHelper.cs:9
static bool IsTouching(BotNavHelper n0, BotNavHelper n1)
Determines whether two nodes are "touching" (within eachothers discoverable radii).
Definition: BotNavHelper.cs:57
Vector3 GetRandomPoint()
Returns a point in the walkable radius of this node.
Definition: BotNavHelper.cs:19
BotNavHelper GetSiblingClosestTo(Vector3 point)
Returns the sibling node closest to the point provided.
Definition: BotNavHelper.cs:27