3 using System.Collections.Generic;
11 public float DiscoveryRadius;
12 public float WalkableRadius;
21 return transform.position + (Vector3)Random.insideUnitCircle * WalkableRadius;
29 return _siblings.OrderBy(nav => (nav.transform.position - point).magnitude).FirstOrDefault();
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);
48 _siblings = FindObjectsOfType<BotNavHelper>()
49 .Where(nav => nav !=
this)
60 Vector3 p0 = n0.transform.position + (n1.transform.position - n0.transform.position).normalized * n0.DiscoveryRadius;
61 return ((n1.transform.position - p0).magnitude < n1.DiscoveryRadius);
A helpful node Component for fast-cheap bot path finding.
static bool IsTouching(BotNavHelper n0, BotNavHelper n1)
Determines whether two nodes are "touching" (within eachothers discoverable radii).
Vector3 GetRandomPoint()
Returns a point in the walkable radius of this node.
BotNavHelper GetSiblingClosestTo(Vector3 point)
Returns the sibling node closest to the point provided.