a* pathfinding project의 Graph를 이동하려면 center 속성을 이용해서 이동시켜야 한다.
public AstarPath astarPath;
public void LocateAStarGraph(Vector3 centerPosition)
{
var grid = astarPath.data.gridGraph;
if (grid != null)
{
grid.center = centerPosition;
// 이동 후 그래프 다시 스캔
AstarPath.active.Scan();
}
}