void Awake() { AStarPathfinder2DHex.Instance = this; }
// srcのマップをコピー cellMapBodyを共有するときに使用する public void MapInit(AStarPathfinder2DHex src) { this.cellMapBody = src.cellMapBody; this.GridColumns = src.GridColumns; this.GridRows = src.GridRows; }