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