I’m trying to get a path for a Grid Graph using AstarPath.StartPath, but it is returning very large positions (Path.path[index].position). Node size is 1 on a 10 by 10 grid and a search from 0,0,0 to 1,1,0 returns the following path list:
500,500,0
1500,1500,0
I was hoping for something like this:
0,0,0
1,1,0