Esempio n. 1
0
 public void FollowPath(MovePath path)
 {
     moveTargeter.FindSelectable();
     Debug.Assert(path.start == currentTile);
     if (path.end != currentTile)
     {
         currentTile.occupant = null;
         StartCoroutine(animateMove(path));
     }
 }
Esempio n. 2
0
 public override void enter(CombatManager mgr)
 {
     targeter = Unit.current.moveTargeter;
     targeter.FindSelectable();
     FieldMap.current.showSelectable();
 }