Example #1
0
 void Awake()
 {
     requestManager = GetComponent <NodePathRequestManager>();
 }
Example #2
0
 void Awake()
 {
     requestManager = GetComponent<NodePathRequestManager>();
 }
Example #3
0
 void Awake()
 {
     instance = this;
     pathfinding = GetComponent<NodeAStarPathfinding>();
 }
Example #4
0
 public void requestNewPath(ProtocolClient client, Node pathEnd, Action <List <Node>, bool> callback)
 {
     NodePathRequestManager.RequestPath(client.transform.position, pathEnd.worldPosition, getDynamicUnwalkable(client, 2), callback);
 }
Example #5
0
 void Awake()
 {
     instance    = this;
     pathfinding = GetComponent <NodeAStarPathfinding>();
 }