コード例 #1
0
 protected void Awake()
 {
     pathfind = new Pathfind {
         tilemapManager = tilemapManager
     };
     gridElement = GetComponent <GridElement>();
     status      = AgentStatus.Normal;
     if (gridElement.solid && pushable)
     {
         Debug.LogWarning("Agent is pushable but gridElement is set to solid. overriding gridElement solid to false");
         gridElement.solid = false;
     }
 }
コード例 #2
0
 void Awake()
 {
     gridElement = GetComponent <GridElement>();
     agent       = GetComponent <Agent>();
     gridElement.onNewPositionAction += Illuminate;
 }
コード例 #3
0
ファイル: TurnInfo.cs プロジェクト: hunterdyar/GridStealth
 public TurnInfo()
 {
     turnInMotion = false;
     ai           = null;
     gridElement  = null;
 }